X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/a440f184767511bdda309d1c2e51719c1c2a7ca6..d3fc6146c0fd38562c28eac50bc932b2992b97a5:/twiddle.c diff --git a/twiddle.c b/twiddle.c index daf691c..c12872f 100644 --- a/twiddle.c +++ b/twiddle.c @@ -545,6 +545,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]; @@ -1181,7 +1186,7 @@ static void game_print(drawing *dr, game_state *state, int tilesize) #endif const struct game thegame = { - "Twiddle", "games.twiddle", + "Twiddle", "games.twiddle", "twiddle", default_params, game_fetch_preset, decode_params, @@ -1196,7 +1201,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,