From f01f82105e5feb2586a2ca257947d76e9b982d04 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 17 Jun 2005 18:54:58 +0000 Subject: Infrastructure change which I've been thinking about for a while: the back end function solve_game() now takes the _current_ game_state in addition to the initial one. [originally from svn r5969] --- samegame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'samegame.c') diff --git a/samegame.c b/samegame.c index 8b4379d..6294a3d 100644 --- a/samegame.c +++ b/samegame.c @@ -354,8 +354,8 @@ static void free_game(game_state *state) sfree(state); } -static game_state *solve_game(game_state *state, game_aux_info *aux, - char **error) +static game_state *solve_game(game_state *state, game_state *currstate, + game_aux_info *aux, char **error) { return NULL; } -- cgit v1.1