summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unfinished/sokoban.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/unfinished/sokoban.c')
-rw-r--r--apps/plugins/puzzles/src/unfinished/sokoban.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/unfinished/sokoban.c b/apps/plugins/puzzles/src/unfinished/sokoban.c
index 7d42a12c5d..ecc222c906 100644
--- a/apps/plugins/puzzles/src/unfinished/sokoban.c
+++ b/apps/plugins/puzzles/src/unfinished/sokoban.c
@@ -1415,6 +1415,14 @@ static float game_flash_length(const game_state *oldstate,
1415 return 0.0F; 1415 return 0.0F;
1416} 1416}
1417 1417
1418static void game_get_cursor_location(const game_ui *ui,
1419 const game_drawstate *ds,
1420 const game_state *state,
1421 const game_params *params,
1422 int *x, int *y, int *w, int *h)
1423{
1424}
1425
1418static int game_status(const game_state *state) 1426static int game_status(const game_state *state)
1419{ 1427{
1420 return state->completed ? +1 : 0; 1428 return state->completed ? +1 : 0;
@@ -1469,6 +1477,7 @@ const struct game thegame = {
1469 game_redraw, 1477 game_redraw,
1470 game_anim_length, 1478 game_anim_length,
1471 game_flash_length, 1479 game_flash_length,
1480 game_get_cursor_location,
1472 game_status, 1481 game_status,
1473 false, false, game_print_size, game_print, 1482 false, false, game_print_size, game_print,
1474 false, /* wants_statusbar */ 1483 false, /* wants_statusbar */