diff options
Diffstat (limited to 'bridges.c')
| -rw-r--r-- | bridges.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -147,6 +147,11 @@ static void fixup_islands_for_realloc(game_state *state) } } +static int game_can_format_as_text_now(game_params *params) +{ + return TRUE; +} + static char *game_text_format(game_state *state) { int x, y, len, nl; @@ -2644,7 +2649,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, |