aboutsummaryrefslogtreecommitdiff
path: root/twiddle.c
diff options
context:
space:
mode:
Diffstat (limited to 'twiddle.c')
-rw-r--r--twiddle.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/twiddle.c b/twiddle.c
index 9ac4a3a..b554879 100644
--- a/twiddle.c
+++ b/twiddle.c
@@ -616,6 +616,11 @@ static void free_ui(game_ui *ui)
{
}
+static void game_changed_state(game_ui *ui, game_state *oldstate,
+ game_state *newstate)
+{
+}
+
static game_state *make_move(game_state *from, game_ui *ui, game_drawstate *ds,
int x, int y, int button)
{
@@ -1174,6 +1179,7 @@ const struct game thegame = {
TRUE, game_text_format,
new_ui,
free_ui,
+ game_changed_state,
make_move,
game_size,
game_colours,