X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/750037d76de7c1ab5d46aaf8a712f32599e7d563..6bb2af847d3bad4f2a544ad7a428f7063fd1991a:/pegs.c diff --git a/pegs.c b/pegs.c index d1addd1..7ac0ac8 100644 --- a/pegs.c +++ b/pegs.c @@ -711,6 +711,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) { int w = state->w, h = state->h; @@ -1201,7 +1206,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,