X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=7e2628b1ea77e7d82b38547bd8cdb8d0d64e751c;hp=fe701a9c8cc5a78a89fc07c4ce716fba94d5f837;hb=1373a00187f9f6ee282a77a6039386c2746964b6;hpb=925f97f4e761136c8a845d98f55303137fade589 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index fe701a9c..7e2628b1 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -123,7 +123,8 @@ void benchmark(const std::string& commandLine) { for (it = positions.begin(); it != positions.end(); ++it) { Move moves[1] = {MOVE_NONE}; + int dummy[2] = {0, 0}; Position pos(*it); - think(pos, true, false, 0, 0, 0, 0, 0, secsPerPos * 1000, moves); + think(pos, true, false, 0, dummy, dummy, 0, 0, 0, secsPerPos * 1000, moves); } }