Skip to content

Commit

Permalink
Fix wrong config type for ControllerEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Northfear committed Jun 26, 2021
1 parent 8860827 commit 346dcab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void SettingsClass::Load(INIClass& ini)
*/
Mouse.RawInput = ini.Get_Bool("Mouse", "RawInput", Mouse.RawInput);
Mouse.Sensitivity = ini.Get_Int("Mouse", "Sensitivity", Mouse.Sensitivity);
Mouse.ControllerEnabled = ini.Get_Int("Mouse", "ControllerEnabled", Mouse.ControllerEnabled);
Mouse.ControllerEnabled = ini.Get_Bool("Mouse", "ControllerEnabled", Mouse.ControllerEnabled);
Mouse.ControllerPointerSpeed = ini.Get_Int("Mouse", "ControllerPointerSpeed", Mouse.ControllerPointerSpeed);

/*
Expand Down

0 comments on commit 346dcab

Please sign in to comment.