chiark / gitweb /
New infrastructure feature. Games are now permitted to be
[sgt-puzzles.git] / bridges.c
index d56f287eeefee80f4ee6a30927e293c248eb5191..18296817e8177daf854bff7a65994d031f4d8311 100644 (file)
--- 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,