diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 17:00:16 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 17:00:16 +0100 |
commit | 9a993bba5273fe39d189204b13b02e38852231e8 (patch) | |
tree | 95a6e4e0cd0503e97a967062ab1924e21cef249b /FICS/board.c | |
parent | 7bd8981a2e0914aa61220b1d110e04e8adcdfa23 (diff) |
Added alignment
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; |