X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/750037d76de7c1ab5d46aaf8a712f32599e7d563..f02e50a0b6ad50112e94ed35994bc34e0a1e9c0b:/bridges.c diff --git a/bridges.c b/bridges.c index a8fd8b3..1829681 100644 --- a/bridges.c +++ b/bridges.c @@ -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, @@ -2662,7 +2667,7 @@ const struct game thegame = { TRUE, FALSE, game_print_size, game_print, FALSE, /* wants_statusbar */ FALSE, game_timing_state, - 0, /* flags */ + REQUIRE_RBUTTON, /* flags */ }; /* vim: set shiftwidth=4 tabstop=8: */