First cut at a game timer. Yet another backend function which
[sgt/puzzles] / sixteen.c
index 8f43b7a..1871e5f 100644 (file)
--- a/sixteen.c
+++ b/sixteen.c
@@ -961,6 +961,11 @@ static int game_wants_statusbar(void)
     return TRUE;
 }
 
+static int game_timing_state(game_state *state)
+{
+    return TRUE;
+}
+
 #ifdef COMBINED
 #define thegame sixteen
 #endif
@@ -994,4 +999,5 @@ const struct game thegame = {
     game_anim_length,
     game_flash_length,
     game_wants_statusbar,
+    FALSE, game_timing_state,
 };