summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unfinished/separate.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/unfinished/separate.c')
-rw-r--r--apps/plugins/puzzles/src/unfinished/separate.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/unfinished/separate.c b/apps/plugins/puzzles/src/unfinished/separate.c
index 88dc8ed060..39243afb92 100644
--- a/apps/plugins/puzzles/src/unfinished/separate.c
+++ b/apps/plugins/puzzles/src/unfinished/separate.c
@@ -799,6 +799,14 @@ static float game_flash_length(const game_state *oldstate,
799 return 0.0F; 799 return 0.0F;
800} 800}
801 801
802static void game_get_cursor_location(const game_ui *ui,
803 const game_drawstate *ds,
804 const game_state *state,
805 const game_params *params,
806 int *x, int *y, int *w, int *h)
807{
808}
809
802static int game_status(const game_state *state) 810static int game_status(const game_state *state)
803{ 811{
804 return 0; 812 return 0;
@@ -853,6 +861,7 @@ const struct game thegame = {
853 game_redraw, 861 game_redraw,
854 game_anim_length, 862 game_anim_length,
855 game_flash_length, 863 game_flash_length,
864 game_get_cursor_location,
856 game_status, 865 game_status,
857 false, false, game_print_size, game_print, 866 false, false, game_print_size, game_print,
858 false, /* wants_statusbar */ 867 false, /* wants_statusbar */