X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/ffb5d90c357b7d13ba1f2ca13e7ef29b934a845f..4496362fadb5f60b8ecf431fb220d26df7280f99:/unfinished/pearl.c diff --git a/unfinished/pearl.c b/unfinished/pearl.c index bd40dba..843d99e 100644 --- a/unfinished/pearl.c +++ b/unfinished/pearl.c @@ -1349,6 +1349,11 @@ static float game_flash_length(game_state *oldstate, game_state *newstate, return 0.0F; } +static int game_is_solved(game_state *state) +{ + return FALSE; +} + static int game_timing_state(game_state *state, game_ui *ui) { return TRUE; @@ -1397,6 +1402,7 @@ const struct game thegame = { game_redraw, game_anim_length, game_flash_length, + game_is_solved, FALSE, FALSE, game_print_size, game_print, FALSE, /* wants_statusbar */ FALSE, game_timing_state,