diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-29 21:41:30 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-29 21:41:30 -0600 |
commit | 0dd152a45305b54c6881eed1ff7d8d814cb92e59 (patch) | |
tree | 3118d279cd4246fb73aab97bd84c38eb84092218 /src/game.c | |
parent | f8e133343b9c07dbb66ea313fd982339fbd72137 (diff) |
I over use render textures lol
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ void initGame(Game * game) { initCameras(game, game->cameras); // Game screen. - initGameScreen(&game->gameScreen); + initGameScreen(game, &game->gameScreen); // World. initWorld(&game->world); |