diff options
-rw-r--r-- | chess.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,9 +16,9 @@ // online play (FICS? lichess? custom?) // the longest possible game with the 75-move rule is 8848.5 moves, -// or 353940 half-moves. +// or 17697 half-moves. // It's totally overkill but I think we can afford the meg or two of RAM. -#define MAX_MOVES 400000 +#define MAX_MOVES 40000 typedef enum Piece { empty, |