chiark / gitweb /
New infrastructure feature. Games are now permitted to be
[sgt-puzzles.git] / flip.c
diff --git a/flip.c b/flip.c
index 0a537c3dc52c3c60483fe4dc78af3f14292ace6e..10c48250a06e240bfdc74d32296cbca062cafc72 100644 (file)
--- a/flip.c
+++ b/flip.c
@@ -853,6 +853,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)
 {
     return NULL;
@@ -1281,7 +1286,7 @@ const struct game thegame = {
     dup_game,
     free_game,
     TRUE, solve_game,
-    FALSE, game_text_format,
+    FALSE, game_can_format_as_text_now, game_text_format,
     new_ui,
     free_ui,
     encode_ui,