chiark / gitweb /
Add request_keys() to the rest of the unfinished games.
authorFranklin Wei <me@fwei.tk>
Mon, 23 Apr 2018 23:43:14 +0000 (19:43 -0400)
committerSimon Tatham <anakin@pobox.com>
Tue, 24 Apr 2018 20:32:45 +0000 (21:32 +0100)
I just realized that only "Group" received the request_keys() field in the
game struct for some reason.

unfinished/separate.c
unfinished/slide.c
unfinished/sokoban.c

index 7fd8da82029858565ac487d2ff69797e820c868d..fc64d7fe37c3311e078868dcfab69e36113005d4 100644 (file)
@@ -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,
index 9770013235a4d12348db8c1f1e0a13000499ef1d..504c4e95e5e62aeee679b851056cdf143ef3b479 100644 (file)
@@ -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,
index 12646904160287ccdb6340576973774d345f6b7e..a06ba7a6628db8bd1574a993984dbf42b0052f2f 100644 (file)
@@ -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,