From 1a5408e7ee5166a82467e45662eeb6ca914473ed Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Sun, 29 Oct 2017 16:02:35 +0100 Subject: [PATCH] Decrease feature timeout to 1 sec The feature timeout used to be 10 sec, which seems ridiculously long at present-day computer speeds. It is reduced to 1 sec, but actually twice this will be used because of the "uci" probe that will follow the "protover 2" probe, and will use the same timeout. --- common.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common.h b/common.h index 16942e5..6638b36 100644 --- a/common.h +++ b/common.h @@ -228,7 +228,7 @@ typedef char *String; #define LOWTIMEWARNING_COLOR "#FF0000" #define BELLCHAR '\007' #define NULLCHAR '\000' -#define FEATURE_TIMEOUT 10000 /*ms*/ +#define FEATURE_TIMEOUT 1000 /*ms*/ #define MATE_SCORE 100000 #define CLOCK_FONT 0 -- 1.7.0.4