summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unfinished/slide.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/unfinished/slide.c')
-rw-r--r--apps/plugins/puzzles/src/unfinished/slide.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/unfinished/slide.c b/apps/plugins/puzzles/src/unfinished/slide.c
index 5ad1237d58..c7a3dcecf7 100644
--- a/apps/plugins/puzzles/src/unfinished/slide.c
+++ b/apps/plugins/puzzles/src/unfinished/slide.c
@@ -2297,6 +2297,14 @@ static float game_flash_length(const game_state *oldstate,
2297 return 0.0F; 2297 return 0.0F;
2298} 2298}
2299 2299
2300static void game_get_cursor_location(const game_ui *ui,
2301 const game_drawstate *ds,
2302 const game_state *state,
2303 const game_params *params,
2304 int *x, int *y, int *w, int *h)
2305{
2306}
2307
2300static int game_status(const game_state *state) 2308static int game_status(const game_state *state)
2301{ 2309{
2302 return state->completed ? +1 : 0; 2310 return state->completed ? +1 : 0;
@@ -2351,6 +2359,7 @@ const struct game thegame = {
2351 game_redraw, 2359 game_redraw,
2352 game_anim_length, 2360 game_anim_length,
2353 game_flash_length, 2361 game_flash_length,
2362 game_get_cursor_location,
2354 game_status, 2363 game_status,
2355 false, false, game_print_size, game_print, 2364 false, false, game_print_size, game_print,
2356 true, /* wants_statusbar */ 2365 true, /* wants_statusbar */