From 851eef61f201f8461de38e4fe7553d1a8ccfb59a Mon Sep 17 00:00:00 2001 From: Urban Wallasch Date: Sat, 5 Jun 2021 19:06:51 +0200 Subject: [PATCH] * Tweaked default value for blur parameter. * Removed cruft from Makefile. --- Makefile | 5 +---- main.c | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index dd519c9..b2a62db 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ LIBS := -lpthread $(shell pkg-config --libs GraphicsMagickWand) STRIP := strip RM := rm -f -.PHONY: all clean distclean +.PHONY: all clean all: $(BIN) @@ -33,9 +33,6 @@ $(BIN): $(OBJ) $(SELF) clean: $(RM) $(BIN) $(OBJ) $(DEP) -distclean: clean - $(RM) config.h - -include $(DEP) # EOF diff --git a/main.c b/main.c index 2a82483..ee2db12 100644 --- a/main.c +++ b/main.c @@ -30,7 +30,7 @@ static struct { .db_outfile = NULL, .db_prune = 0, .rescan = 0, - .blur = 1.5, + .blur = 2.5, .thresh = 256, .max_fd = 1000, .nthreads = 4, -- 2.30.2