aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
commit3f0be672f9c5a07a98be0dc703b95f1bbe73f33e (patch)
treeaeb7776878e3460f7ba1f33cf2c0d195eb45f2c5 /src/game.c
parentb92adb44b618db0272819cb77e5727441c566838 (diff)
Mouse control working
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index bffc6b5..3fd0c78 100644
--- a/src/game.c
+++ b/src/game.c
@@ -4,6 +4,9 @@ void initGame(Game * game) {
// Window.
InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Killa Facsista");
+ // Settings.
+ initSettings(&game->settings);
+
// Assets.
LoadAssets(&game->assets);
@@ -17,7 +20,7 @@ void initGame(Game * game) {
initPlayerCamera(&game->playerCamera);
SetTargetFPS(60);
- //DisableCursor();
+ DisableCursor();
// World.
initWorld(&game->world);