From: Marco Costalba Date: Sat, 2 Jul 2011 15:15:20 +0000 (+0100) Subject: Restore startpos_ply_counter() instead of full_moves() X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=ff41b8df764b352b450af572fa98097343b3f808;hp=ff41b8df764b352b450af572fa98097343b3f808 Restore startpos_ply_counter() instead of full_moves() And pass correct currentPly to TimeManager::init(). This restores old behaviour, in particular now black has a different timing than white becuase is no more: currentPly = 2 * fullMoveNumber; but becomes 2 * (fullMoves - 1) + int(sideToMove == BLACK) No functional change. Signed-off-by: Marco Costalba ---