From: Fabian Fichter Date: Mon, 4 Nov 2019 18:02:27 +0000 (+0100) Subject: Ensure that GUI sends time command in CECP X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=fda04472d1d26a57fd80cea4689ebc1c71ff8067;p=fairystockfish.git Ensure that GUI sends time command in CECP --- diff --git a/src/uci.cpp b/src/uci.cpp index ed61569..bad9884 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -292,7 +292,7 @@ void UCI::loop(int argc, char* argv[]) { for (string v : variants.get_keys()) if (v != "chess") vars += "," + v; - sync_cout << "feature setboard=1 usermove=1 memory=1 smp=1 colors=0 draw=0 name=0 sigint=0 myname=Fairy-Stockfish variants=\"" << vars << "\"" + sync_cout << "feature setboard=1 usermove=1 time=1 memory=1 smp=1 colors=0 draw=0 name=0 sigint=0 myname=Fairy-Stockfish variants=\"" << vars << "\"" << Options << sync_endl << "feature done=1" << sync_endl; }