diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-06 16:50:59 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-06 16:50:59 -0600 |
commit | 0e3f2f54c73ea3d473c38159dcb180eeb7988f4b (patch) | |
tree | b6d903c0fa9bd93fe38e58c00c4419b2488f13f8 /src/settings.c | |
parent | 6411d4eabe48104211be728663afb146dbd12711 (diff) |
About to fix the stupid mouse
Diffstat (limited to 'src/settings.c')
-rw-r--r-- | src/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.c b/src/settings.c index 5b91f65..62d6b72 100644 --- a/src/settings.c +++ b/src/settings.c @@ -2,7 +2,7 @@ void initSettings(Settings * settings) { *settings = (Settings){ - .controlMode = JOYSTICK_CONTROL, + .controlMode = KEYBOARD_AND_MOUSE_CONTROL, .mouseSensitivity = 0.05, .scrollBarSpeed = 10.0, .gamePadNum = 0, @@ -10,7 +10,7 @@ void initSettings(Settings * settings) { .yawStick = 0, .rollStick = 2, .speedStick = 3, - .joystickSensitivity = 0.5, + .joystickSensitivity = 1000.0, .fps = 0, .drawFps = true }; |