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