X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/7fe4ef5172c86b9c32a6c7d9bb1e25587bf5a24d..2c580e640c7a19be5700be84b2429a5aea966a2f:/rect.c diff --git a/rect.c b/rect.c index 1fe873b..c77e5b7 100644 --- a/rect.c +++ b/rect.c @@ -2043,6 +2043,11 @@ static char *solve_game(game_state *state, game_state *currstate, return ret; } +static int game_can_format_as_text_now(game_params *params) +{ + return TRUE; +} + static char *game_text_format(game_state *state) { char *ret, *p, buf[80]; @@ -2878,7 +2883,7 @@ const struct game thegame = { dup_game, free_game, TRUE, solve_game, - TRUE, game_text_format, + TRUE, game_can_format_as_text_now, game_text_format, new_ui, free_ui, encode_ui,