From 992e7fb9358a0d0a5d99ba119cf584477bda8d72 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 24 Jun 2022 17:28:38 +0200 Subject: 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). --- src/player/inc/human_player.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/player/inc') diff --git a/src/player/inc/human_player.h b/src/player/inc/human_player.h index ca52112..39a0d6d 100644 --- a/src/player/inc/human_player.h +++ b/src/player/inc/human_player.h @@ -64,7 +64,7 @@ struct human_player }; int human_player_init(const struct human_player_cfg *cfg, struct human_player *h); -bool human_player_update(struct human_player *h, struct player_others *o); +void human_player_update(struct human_player *h, struct player_others *o); int human_player_render(const struct human_player *h, const struct player_others *o); #ifdef __cplusplus -- cgit v1.2.3