]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Complete the renaming in Search::LimitsType
[stockfish] / src / uci.cpp
index fc02cf60f69a20eec8cbb034b438865b9ab6d5f0..94caada2bde67c97b1d2159d64298146a9a17065 100644 (file)
@@ -204,13 +204,13 @@ namespace {
     while (is >> token)
     {
         if (token == "wtime")
-            is >> limits.times[WHITE];
+            is >> limits.time[WHITE];
         else if (token == "btime")
-            is >> limits.times[BLACK];
+            is >> limits.time[BLACK];
         else if (token == "winc")
-            is >> limits.incs[WHITE];
+            is >> limits.inc[WHITE];
         else if (token == "binc")
-            is >> limits.incs[BLACK];
+            is >> limits.inc[BLACK];
         else if (token == "movestogo")
             is >> limits.movestogo;
         else if (token == "depth")