Fix crash when reaching max ply

Bug introduced in 1b7223a53c that
updated the ss base stack without increasing
the dimension.

No functional change.
This commit is contained in:
Tom Vijlbrief
2013-08-19 16:53:06 +02:00
committed by Marco Costalba
parent 8c2fd2170a
commit f45eee318b
2 changed files with 5 additions and 5 deletions

View File

@@ -90,7 +90,7 @@ typedef uint64_t Bitboard;
const int MAX_MOVES = 192;
const int MAX_PLY = 100;
const int MAX_PLY_PLUS_3 = MAX_PLY + 3;
const int MAX_PLY_PLUS_6 = MAX_PLY + 6;
/// A move needs 16 bits to be stored
///