aboutsummaryrefslogtreecommitdiff
path: root/mines.c
diff options
context:
space:
mode:
Diffstat (limited to 'mines.c')
-rw-r--r--mines.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/mines.c b/mines.c
index 3c4dc13..431cc08 100644
--- a/mines.c
+++ b/mines.c
@@ -2312,6 +2312,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;
@@ -3091,7 +3096,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,