X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=7e2628b1ea77e7d82b38547bd8cdb8d0d64e751c;hp=4c6c0da67253e335e014fc17c1ddbe77e07a57d7;hb=18860cce406f9646cb6af218c2b23f51d2e47b8d;hpb=d583176baf70e374b95d09eaacf7e9d3f8978d5a diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 4c6c0da6..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, 0, secsPerPos * 1000, moves); + think(pos, true, false, 0, dummy, dummy, 0, 0, 0, secsPerPos * 1000, moves); } }