X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=2650706459abf210ac125298725c3fe7e6c8ddc7;hp=8d625bd9fe553510fce79ff0cf4e538131666e62;hb=adeded29fb6ce483bbbafaa0f67aa086cad968f9;hpb=187a9fe5e7b8349b9eacf23e11cb801a32bb6b12 diff --git a/src/uci.cpp b/src/uci.cpp index 8d625bd9..26507064 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -197,11 +197,7 @@ void UCI::loop(int argc, char* argv[]) { << "\n" << Options << "\nuciok" << sync_endl; - else if (token == "eval") - { - Search::RootColor = pos.side_to_move(); // Ensure it is set - sync_cout << Eval::trace(pos) << sync_endl; - } + else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else if (token == "ucinewgame") TT.clear(); else if (token == "go") go(pos, is); else if (token == "position") position(pos, is);