diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:28:38 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:28:38 +0200 |
| commit | 992e7fb9358a0d0a5d99ba119cf584477bda8d72 (patch) | |
| tree | 1cd753a73b560e60e0de353b9a1b7d0e15b002d6 /src/game | |
| parent | 5ac01ff845f37fadd1822f99149f1b610f510bba (diff) | |
| download | rts-992e7fb9358a0d0a5d99ba119cf584477bda8d72.tar.gz | |
peripheral: provide common actions
Whereas some actions are context-specific (e.g.: selecting a player),
some are context-independent and can be executed for all screens
(e.g.: exiting the game).
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/src/game.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/src/game.c b/src/game/src/game.c index dc3d55b..bcab5f2 100644 --- a/src/game/src/game.c +++ b/src/game/src/game.c @@ -88,7 +88,8 @@ int game(void) .n_res = sizeof res / sizeof *res }; - exit |= human_player_update(&humans[i], &o); + human_player_update(&humans[i], &o); + exit |= humans[i].periph.common.exit; terrain_update(&map); if (terrain_render(&map, &h->cam) |
