X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=3895c7a1d49aa001535430616d97c58920179697;hp=c18cfc35309a3ac9a4a0ab039e6097b5ba47aef2;hb=0a18adb02ac375f7d7fc31ef76b59e13a0263773;hpb=630b3b2482d74486f3abf438f58bc502639b6073;ds=sidebyside diff --git a/src/uci.cpp b/src/uci.cpp index c18cfc35..3895c7a1 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -26,7 +26,6 @@ #include "position.h" #include "search.h" #include "thread.h" -#include "tt.h" #include "ucioption.h" using namespace std; @@ -94,7 +93,7 @@ void UCI::loop(const string& args) { go(pos, is); else if (token == "ucinewgame") - TT.clear(); + { /* Avoid returning "Unknown command" */ } else if (token == "isready") sync_cout << "readyok" << sync_endl;