# HG changeset patch # User Matti Hamalainen # Date 1509368780 -7200 # Node ID 599ef33b918da6b5df5b30a11950dddf9f683e27 # Parent 892d5277f1ff0bed91be573b057ce640e7c254ed Adjust minimum entropy thresholds. diff -r 892d5277f1ff -r 599ef33b918d mapsearch.c --- a/mapsearch.c Mon Oct 30 12:55:21 2017 +0200 +++ b/mapsearch.c Mon Oct 30 15:06:20 2017 +0200 @@ -736,7 +736,7 @@ int entropy = mapBlockGetEntropy(pattern, optCleanChars, strlen(optCleanChars)); if ((entropy < 2 && width < 10 && height < 10) || - (entropy < 3 && width * height < 6)) + (entropy < 3 && width * height < 4)) { *verr = "Search block entropy insufficient."; goto out;