]> git.sesse.net Git - stockfish/blobdiff - src/timeman.h
Update stats at pv nodes
[stockfish] / src / timeman.h
index 1333767f6ceff7268dea48b8d28f700514167bf0..c5390befdfff4efc7cc52e063cbc12eb7cd30274 100644 (file)
@@ -32,7 +32,7 @@ public:
   void pv_instability(double bestMoveChanges) { unstablePvFactor = 1 + bestMoveChanges; }
   int available() const { return int(optimumTime * unstablePvFactor * 0.76); }
   int maximum() const { return maximumTime; }
-  int elapsed() const { return Search::Limits.npmsec ? Search::RootPos.nodes_searched() : now() - start; }
+  int elapsed() const { return int(Search::Limits.npmsec ? Search::RootPos.nodes_searched() : now() - start); }
 
   int64_t availableNodes; // When in 'nodes as time' mode