mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
Fix compatibility with old Windows 95 and 98
Report and patches by bnemias. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+1
-1
@@ -136,7 +136,7 @@ void Search::init() {
|
||||
|
||||
// Init futility move count array
|
||||
for (d = 0; d < 32; d++)
|
||||
FutilityMoveCounts[d] = int(3.001 + 0.25 * pow(d, 2.0));
|
||||
FutilityMoveCounts[d] = int(3.001 + 0.25 * pow(double(d), 2.0));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user