diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-09-24 00:00:00 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-09-24 00:00:00 -0600 |
commit | 6c2037ad2c6303545cc051120c00663def468a2a (patch) | |
tree | 3c10e229c08305c634e3207a8704d8e514e072d1 /src/game.c | |
parent | 4f4e5d1f9fc85ab0af46831bc6a0af6555d00213 (diff) |
Made camera system handle more cameras easier
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ void initGame(Game * game) { initMainMenu(game); // Camera. - initPlayerCamera(&game->playerCamera); + initCameras(game, game->cameras); // Game screen. initGameScreen(&game->gameScreen); |