1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Fix build with gcc-15
Author: Matheus Polkorny <mpolkorny@gmail.com>
---
src/game.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/game.h b/src/game.h
index fc75acc..fd511a8 100644
--- a/src/game.h
+++ b/src/game.h
@@ -207,9 +207,9 @@ void continueTimer (L_timer * time);
int yesNoQuestion (data_t * gfx, game_t * game, char *text);
-int updateInput ();
+int updateInput (game_t * game);
-void freeGame ();
+void freeGame (game_t * game);
void drawGame (data_t * gfx, game_t * game);
|