diff options
Diffstat (limited to 'net.c')
| -rw-r--r-- | net.c | 19 |
1 files changed, 2 insertions, 17 deletions
@@ -1848,16 +1848,6 @@ static char *solve_game(const game_state *state, const game_state *currstate, return ret; } -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; -} - /* ---------------------------------------------------------------------- * Utility routine. */ @@ -3102,11 +3092,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) { int pw, ph; @@ -3262,7 +3247,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, @@ -3283,6 +3268,6 @@ const struct game thegame = { game_status, true, false, game_print_size, game_print, true, /* wants_statusbar */ - false, game_timing_state, + false, NULL, /* timing_state */ 0, /* flags */ }; |