aboutsummaryrefslogtreecommitdiff
path: root/sixteen.c
diff options
context:
space:
mode:
Diffstat (limited to 'sixteen.c')
-rw-r--r--sixteen.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/sixteen.c b/sixteen.c
index 7c9e7aa..400fa51 100644
--- a/sixteen.c
+++ b/sixteen.c
@@ -1175,19 +1175,6 @@ static int game_status(const game_state *state)
return state->completed ? +1 : 0;
}
-static bool game_timing_state(const game_state *state, game_ui *ui)
-{
- return true;
-}
-
-static void game_print_size(const game_params *params, float *x, float *y)
-{
-}
-
-static void game_print(drawing *dr, const game_state *state, int tilesize)
-{
-}
-
#ifdef COMBINED
#define thegame sixteen
#endif
@@ -1227,9 +1214,9 @@ const struct game thegame = {
game_flash_length,
game_get_cursor_location,
game_status,
- false, false, game_print_size, game_print,
+ false, false, NULL, NULL, /* print_size, print */
true, /* wants_statusbar */
- false, game_timing_state,
+ false, NULL, /* timing_state */
0, /* flags */
};