X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/48dcdd627698354063fa1b551cfa1917dea1b25e..17bebcac7bf49c2927fb3bc0d63a6fdc268eb0d7:/pattern.c diff --git a/pattern.c b/pattern.c index c5fd9dc..c7c06f1 100644 --- a/pattern.c +++ b/pattern.c @@ -475,7 +475,7 @@ struct game_aux_info { }; static char *new_game_desc(game_params *params, random_state *rs, - game_aux_info **aux) + game_aux_info **aux, int interactive) { unsigned char *grid; int i, j, max, rowlen, *rowdata; @@ -764,9 +764,8 @@ static void free_ui(game_ui *ui) sfree(ui); } -static game_state *make_move(game_state *from, game_ui *ui, - int x, int y, int button) -{ +static game_state *make_move(game_state *from, game_ui *ui, game_drawstate *ds, + int x, int y, int button) { game_state *ret; button &= ~MOD_MASK; @@ -1144,6 +1143,7 @@ const struct game thegame = { game_flash_length, game_wants_statusbar, FALSE, game_timing_state, + 0, /* mouse_priorities */ }; #ifdef STANDALONE_SOLVER