aboutsummaryrefslogtreecommitdiff
path: root/loopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'loopy.c')
-rw-r--r--loopy.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/loopy.c b/loopy.c
index 10619af..a53e452 100644
--- a/loopy.c
+++ b/loopy.c
@@ -151,6 +151,11 @@ struct game_drawstate {
char *clue_error;
};
+static int game_can_format_as_text_now(game_params *params)
+{
+ return TRUE;
+}
+
static char *game_text_format(game_state *state);
static char *state_to_text(const game_state *state);
static char *validate_desc(game_params *params, char *desc);
@@ -3821,7 +3826,7 @@ const struct game thegame = {
dup_game,
free_game,
1, solve_game,
- TRUE, game_text_format,
+ TRUE, game_can_format_as_text_now, game_text_format,
new_ui,
free_ui,
encode_ui,