aboutsummaryrefslogtreecommitdiff
path: root/nullgame.c
diff options
context:
space:
mode:
Diffstat (limited to 'nullgame.c')
-rw-r--r--nullgame.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/nullgame.c b/nullgame.c
index 7e27c4a..abb6cc5 100644
--- a/nullgame.c
+++ b/nullgame.c
@@ -215,6 +215,11 @@ static int game_wants_statusbar(void)
return FALSE;
}
+static int game_timing_state(game_state *state)
+{
+ return TRUE;
+}
+
#ifdef COMBINED
#define thegame nullgame
#endif
@@ -248,4 +253,5 @@ const struct game thegame = {
game_anim_length,
game_flash_length,
game_wants_statusbar,
+ FALSE, game_timing_state,
};