]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Only on Windows do wait for input at the end of benchmark
[stockfish] / src / uci.cpp
index 4a333f70b7540b2d660070bf6579cfaafaa5cc50..0a1de3127ae8aa167d6db35032549ee3e5329ac9 100644 (file)
@@ -117,13 +117,13 @@ namespace {
     if (token == "uci")
     {
         cout << "id name " << engine_name()
-             << "\nid author Tord Romstad, Marco Costalba\n";
+             << "\nid author Tord Romstad, Marco Costalba, Joona Kiiski\n";
         print_uci_options();
         cout << "uciok" << endl;
     }
     else if (token == "ucinewgame")
     {
-        TT.clear();
+        push_button("Clear Hash");
         Position::init_piece_square_tables();
         RootPosition.from_fen(StartPosition);
     }