]> git.sesse.net Git - stockfish/blobdiff - src/uci.cpp
Rename MOVES_MAX in MAX_MOVES
[stockfish] / src / uci.cpp
index 9593b593c897fd1d626d452d62fdb8b8dc6b5df9..248601b5de3b5db960a664f589b7ccdb0c47ecc4 100644 (file)
@@ -205,7 +205,7 @@ namespace {
     string token;
     int time[] = { 0, 0 }, inc[] = { 0, 0 };
     SearchLimits limits(0, 0, 0, 0, 0, 0, false, false);
-    Move searchMoves[MOVES_MAX] = { MOVE_NONE };
+    Move searchMoves[MAX_MOVES] = { MOVE_NONE };
     Move* cur = searchMoves;
 
     while (up >> token)