aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-09-24 00:00:00 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-09-24 00:00:00 -0600
commit6c2037ad2c6303545cc051120c00663def468a2a (patch)
tree3c10e229c08305c634e3207a8704d8e514e072d1 /src/game.c
parent4f4e5d1f9fc85ab0af46831bc6a0af6555d00213 (diff)
Made camera system handle more cameras easier
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index d4deff4..b552b73 100644
--- a/src/game.c
+++ b/src/game.c
@@ -18,7 +18,7 @@ void initGame(Game * game) {
initMainMenu(game);
// Camera.
- initPlayerCamera(&game->playerCamera);
+ initCameras(game, game->cameras);
// Game screen.
initGameScreen(&game->gameScreen);