diff options
| author | Franklin Wei <me@fwei.tk> | 2018-04-23 19:43:14 -0400 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2018-04-24 21:32:45 +0100 |
| commit | 19f46dce8c09c34c29db39ce52a9a7fb1a4a5dd0 (patch) | |
| tree | b724d4596ea73e586154a9fc9e38c5c1316890ad /unfinished | |
| parent | f04923abbcd676585548c5824262cecb47ba6d11 (diff) | |
| download | puzzles-19f46dce8c09c34c29db39ce52a9a7fb1a4a5dd0.zip puzzles-19f46dce8c09c34c29db39ce52a9a7fb1a4a5dd0.tar.gz puzzles-19f46dce8c09c34c29db39ce52a9a7fb1a4a5dd0.tar.bz2 puzzles-19f46dce8c09c34c29db39ce52a9a7fb1a4a5dd0.tar.xz | |
Add request_keys() to the rest of the unfinished games.
I just realized that only "Group" received the request_keys() field in the
game struct for some reason.
Diffstat (limited to 'unfinished')
| -rw-r--r-- | unfinished/separate.c | 1 | ||||
| -rw-r--r-- | unfinished/slide.c | 1 | ||||
| -rw-r--r-- | unfinished/sokoban.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/unfinished/separate.c b/unfinished/separate.c index 7fd8da8..fc64d7f 100644 --- a/unfinished/separate.c +++ b/unfinished/separate.c @@ -841,6 +841,7 @@ const struct game thegame = { free_ui, encode_ui, decode_ui, + NULL, /* game_request_keys */ game_changed_state, interpret_move, execute_move, diff --git a/unfinished/slide.c b/unfinished/slide.c index 9770013..504c4e9 100644 --- a/unfinished/slide.c +++ b/unfinished/slide.c @@ -2333,6 +2333,7 @@ const struct game thegame = { free_ui, encode_ui, decode_ui, + NULL, /* game_request_keys */ game_changed_state, interpret_move, execute_move, diff --git a/unfinished/sokoban.c b/unfinished/sokoban.c index 1264690..a06ba7a 100644 --- a/unfinished/sokoban.c +++ b/unfinished/sokoban.c @@ -1457,6 +1457,7 @@ const struct game thegame = { free_ui, encode_ui, decode_ui, + NULL, /* game_request_keys */ game_changed_state, interpret_move, execute_move, |