X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/ef114e9b86efa3b430985888d3d7630ebd5d81fb..fa3abef5abe95dd9668a87b1cc57a724dcbf6354:/sixteen.c diff --git a/sixteen.c b/sixteen.c index f16bc96..ac3191c 100644 --- a/sixteen.c +++ b/sixteen.c @@ -509,6 +509,11 @@ static char *solve_game(game_state *state, game_state *currstate, return dupstr("S"); } +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]; @@ -1029,7 +1034,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,