X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/c380832d0b832bcfbd16e760ade393f9adab02b6..48dcdd627698354063fa1b551cfa1917dea1b25e:/net.c?ds=sidebyside diff --git a/net.c b/net.c index 8793886..fa4c979 100644 --- a/net.c +++ b/net.c @@ -2568,6 +2568,11 @@ static int game_wants_statusbar(void) return TRUE; } +static int game_timing_state(game_state *state) +{ + return TRUE; +} + #ifdef COMBINED #define thegame net #endif @@ -2601,4 +2606,5 @@ const struct game thegame = { game_anim_length, game_flash_length, game_wants_statusbar, + FALSE, game_timing_state, };