chiark / gitweb /
Add a function to every game backend which indicates whether a game
[sgt-puzzles.git] / lightup.c
index 20e9cecddee09973e0506211db890155ffceef5e..5b97b2b0704d45cfada22938b9ff86c5e3f7bd96 100644 (file)
--- a/lightup.c
+++ b/lightup.c
@@ -2160,6 +2160,11 @@ static float game_flash_length(game_state *oldstate, game_state *newstate,
     return 0.0F;
 }
 
+static int game_is_solved(game_state *state)
+{
+    return state->completed;
+}
+
 static int game_timing_state(game_state *state, game_ui *ui)
 {
     return TRUE;
@@ -2262,6 +2267,7 @@ const struct game thegame = {
     game_redraw,
     game_anim_length,
     game_flash_length,
+    game_is_solved,
     TRUE, FALSE, game_print_size, game_print,
     FALSE,                            /* wants_statusbar */
     FALSE, game_timing_state,