diff options
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/board.c b/FICS/board.c index ae58ca1..d280666 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -882,11 +882,11 @@ board_read_file(char *category, char *gname, game_state_t *gs) while (!feof(fp) && c != '\n') c = fgetc(fp); // Comment line case '\n': - onNewLine = 1; - onColor = -1; - onPiece = -1; - onFile = -1; - onRank = -1; + onNewLine = 1; + onColor = -1; + onPiece = -1; + onFile = -1; + onRank = -1; break; default: break; |