aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/gamedb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/gamedb.c b/FICS/gamedb.c
index fdea593..db933e9 100644
--- a/FICS/gamedb.c
+++ b/FICS/gamedb.c
@@ -1020,7 +1020,7 @@ ReadV1GameFmt(game *g, FILE *fp, char *file, int version)
&g->bInitTime,
&g->bIncrement);
- if ((version < 3) && (!(g->bInitTime)))
+ if (version < 3 && !g->bInitTime)
g->bInitTime = g->wInitTime;
fscanf(fp, "%lx", &g->timeOfStart);