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