From fda04472d1d26a57fd80cea4689ebc1c71ff8067 Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Mon, 4 Nov 2019 19:02:27 +0100 Subject: [PATCH] Ensure that GUI sends time command in CECP --- src/uci.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; } -- 1.7.0.4