]> git.sesse.net Git - stockfish/blobdiff - src/move.cpp
Move globals to id_loop()
[stockfish] / src / move.cpp
index 1b33ff68f721993c42e2712b284fcd50c0d3d5a8..165700a2a31500795da5b5253dec3e0b8a41a4d2 100644 (file)
@@ -195,7 +195,7 @@ const string pretty_pv(Position& pos, int time, int depth,
   size_t length = 0;
 
   // First print depth, score, time and searched nodes...
-  s << std::setw(2) << depth
+  s << std::setw(2) << depth / 2
     << (type == VALUE_TYPE_LOWER ? " >" : type == VALUE_TYPE_UPPER ? " <" : "  ")
     << std::setw(7) << score_string(score)
     << std::setw(8) << time_string(time);