diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 01:07:55 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 01:07:55 +0100 |
commit | 83b5fe929886449283b10ad986cc2b82fad8a1fe (patch) | |
tree | ba6705e8bab24f6ef37f5c0943e9fbb74e8c40b4 /FICS/gamedb.c | |
parent | 514d0e7d14e6f4e6648ef30f40ff8d6b306d1301 (diff) |
Deleted parentheses
Diffstat (limited to 'FICS/gamedb.c')
-rw-r--r-- | FICS/gamedb.c | 2 |
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); |