aboutsummaryrefslogtreecommitdiff
path: root/samegame.c
diff options
context:
space:
mode:
Diffstat (limited to 'samegame.c')
-rw-r--r--samegame.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/samegame.c b/samegame.c
index f66e889..8976ad4 100644
--- a/samegame.c
+++ b/samegame.c
@@ -1022,6 +1022,11 @@ static char *solve_game(game_state *state, game_state *currstate,
return NULL;
}
+static int game_can_format_as_text_now(game_params *params)
+{
+ return TRUE;
+}
+
static char *game_text_format(game_state *state)
{
char *ret, *p;
@@ -1641,7 +1646,7 @@ const struct game thegame = {
dup_game,
free_game,
FALSE, solve_game,
- TRUE, game_text_format,
+ TRUE, game_can_format_as_text_now, game_text_format,
new_ui,
free_ui,
encode_ui,