diff options
| author | nathan <nathansmith@disroot.org> | 2026-01-11 13:13:36 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2026-01-11 13:13:36 +0000 |
| commit | e853966be38ae6c5319df137c3b04a86e52b562b (patch) | |
| tree | 76a7b271ac1795098ebb8d797a523fbcbfc54080 /src/game.c | |
| parent | 013ac4a2f4ae24d71f425f31edd77a8e29ed1da8 (diff) | |
| download | FindThings-e853966be38ae6c5319df137c3b04a86e52b562b.tar.gz FindThings-e853966be38ae6c5319df137c3b04a86e52b562b.tar.bz2 FindThings-e853966be38ae6c5319df137c3b04a86e52b562b.zip | |
Diffstat (limited to 'src/game.c')
| -rw-r--r-- | src/game.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -96,7 +96,7 @@ void initGame(Game* game) initInteractionMenu(&game->interactionMenu, &game->settings); // Inventory. - initInventory(&game->inventory); + initInventory(&game->inventory, &game->settings); disableGameCursor(game); } @@ -327,7 +327,7 @@ void updateGameScene(Game* game) updateGameStatus(game); updateInteractionChat(&game->interactionChat, game); updateInteractionMenu(&game->interactionMenu, game); - updateInventory(&game->inventory); + updateInventory(&game->inventory, game); } void handleGameResize(Game* game) |
