From f4274807cf5c1f046d90f2528f86e56313b138bd Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 12 Feb 2025 17:45:20 +0100 Subject: [PATCH] change the void pointer out for a uint8_t in default game data --- src/game/game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game.h b/src/game/game.h index 4b6f9ad..f5100b1 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -3,7 +3,7 @@ // stores the data used in the game typedef struct { - void* val; + uint8_t tmp; } game_data; // updates the game's state