]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix some comments in position.cpp
[stockfish] / src / search.cpp
index 061689e8f5bd3112af85388028a1fbeba51a690c..24f1e6245672be6b230e8d63d9484d811e30b2d6 100644 (file)
@@ -333,7 +333,7 @@ namespace {
     while (++depth <= MAX_PLY && !Signals.stop && (!Limits.depth || depth <= Limits.depth))
     {
         // Age out PV variability metric
-        BestMoveChanges *= 0.8;
+        BestMoveChanges *= 0.8f;
 
         // Save last iteration's scores before first PV line is searched and all
         // the move scores but the (new) PV are set to -VALUE_INFINITE.