diff options
author | Jaume Delclòs Coll <cosa@cosarara.me> | 2025-04-15 19:33:42 +0000 |
---|---|---|
committer | Jaume Delclòs Coll <cosa@cosarara.me> | 2025-04-15 19:33:42 +0000 |
commit | e3619d9fb3e205294a78fc3e744b28cad398be05 (patch) | |
tree | 9cbf160db1a261000546c9486b8f906fa8527749 | |
parent | 6e9fd8acf1c3433ed26994a293d535808aa37521 (diff) |
-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, |