First cut at a game timer. Yet another backend function which
[sgt/puzzles] / solo.c
diff --git a/solo.c b/solo.c
index 9e350f6..addae60 100644 (file)
--- a/solo.c
+++ b/solo.c
@@ -2140,6 +2140,11 @@ static int game_wants_statusbar(void)
     return FALSE;
 }
 
+static int game_timing_state(game_state *state)
+{
+    return TRUE;
+}
+
 #ifdef COMBINED
 #define thegame solo
 #endif
@@ -2173,6 +2178,7 @@ const struct game thegame = {
     game_anim_length,
     game_flash_length,
     game_wants_statusbar,
+    FALSE, game_timing_state,
 };
 
 #ifdef STANDALONE_SOLVER