X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/60aa1c7413ef8ba2c4889628170f00bf180039f0..505ea4e519a86e04130db10195e913068c9b7284:/map.c diff --git a/map.c b/map.c index 4e9bdd6..bbd9a8e 100644 --- a/map.c +++ b/map.c @@ -2247,6 +2247,11 @@ static char *solve_game(game_state *state, game_state *currstate, return dupstr(aux); } +static int game_can_format_as_text_now(game_params *params) +{ + return TRUE; +} + static char *game_text_format(game_state *state) { return NULL; @@ -3122,7 +3127,7 @@ const struct game thegame = { dup_game, free_game, TRUE, solve_game, - FALSE, game_text_format, + FALSE, game_can_format_as_text_now, game_text_format, new_ui, free_ui, encode_ui,