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.
This commit is contained in:
Franklin Wei
2018-04-23 19:43:14 -04:00
committed by Simon Tatham
parent f04923abbc
commit 19f46dce8c
3 changed files with 3 additions and 0 deletions

View 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,

View 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,

View 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,