summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unfinished/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/unfinished/group.c')
-rw-r--r--apps/plugins/puzzles/src/unfinished/group.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/unfinished/group.c b/apps/plugins/puzzles/src/unfinished/group.c
index 006a9e0ee6..8e0185741e 100644
--- a/apps/plugins/puzzles/src/unfinished/group.c
+++ b/apps/plugins/puzzles/src/unfinished/group.c
@@ -2196,6 +2196,14 @@ static float game_flash_length(const game_state *oldstate,
2196 return 0.0F; 2196 return 0.0F;
2197} 2197}
2198 2198
2199static void game_get_cursor_location(const game_ui *ui,
2200 const game_drawstate *ds,
2201 const game_state *state,
2202 const game_params *params,
2203 int *x, int *y, int *w, int *h)
2204{
2205}
2206
2199static int game_status(const game_state *state) 2207static int game_status(const game_state *state)
2200{ 2208{
2201 return state->completed ? +1 : 0; 2209 return state->completed ? +1 : 0;
@@ -2320,6 +2328,7 @@ const struct game thegame = {
2320 game_redraw, 2328 game_redraw,
2321 game_anim_length, 2329 game_anim_length,
2322 game_flash_length, 2330 game_flash_length,
2331 game_get_cursor_location,
2323 game_status, 2332 game_status,
2324 true, false, game_print_size, game_print, 2333 true, false, game_print_size, game_print,
2325 false, /* wants_statusbar */ 2334 false, /* wants_statusbar */