aboutsummaryrefslogtreecommitdiff
path: root/guess.c
diff options
context:
space:
mode:
Diffstat (limited to 'guess.c')
-rw-r--r--guess.c29
1 files changed, 3 insertions, 26 deletions
diff --git a/guess.c b/guess.c
index dd6462b..5046f98 100644
--- a/guess.c
+++ b/guess.c
@@ -359,16 +359,6 @@ static char *solve_game(const game_state *state, const game_state *currstate,
return dupstr("S");
}
-static bool game_can_format_as_text_now(const game_params *params)
-{
- return true;
-}
-
-static char *game_text_format(const game_state *state)
-{
- return NULL;
-}
-
static bool is_markable(const game_params *params, pegrow pegs)
{
int i, nset = 0, nrequired;
@@ -1500,19 +1490,6 @@ static int game_status(const game_state *state)
return state->solved;
}
-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 guess
#endif
@@ -1533,7 +1510,7 @@ const struct game thegame = {
dup_game,
free_game,
true, solve_game,
- false, game_can_format_as_text_now, game_text_format,
+ false, NULL, NULL, /* can_format_as_text_now, text_format */
new_ui,
free_ui,
encode_ui,
@@ -1552,9 +1529,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 */
false, /* wants_statusbar */
- false, game_timing_state,
+ false, NULL, /* timing_state */
0, /* flags */
};