diff options
author | ewewukek <ewewukek@gmail.com> | 2024-04-04 14:30:14 +0300 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-05-15 00:11:38 +0200 |
commit | a4d7bdc0bbd269d64fc885769908b79ff1b85041 (patch) | |
tree | 4c36a77fab3adc783f668747c17bc7fad2c0b157 /src/defaults.cpp | |
parent | 16fafb1516a346ee0553a329b0606c2bb55283d7 (diff) | |
download | plus-a4d7bdc0bbd269d64fc885769908b79ff1b85041.tar.gz plus-a4d7bdc0bbd269d64fc885769908b79ff1b85041.tar.bz2 plus-a4d7bdc0bbd269d64fc885769908b79ff1b85041.tar.xz plus-a4d7bdc0bbd269d64fc885769908b79ff1b85041.zip |
Enable joystick by default, update default tolerance
Diffstat (limited to 'src/defaults.cpp')
-rw-r--r-- | src/defaults.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/defaults.cpp b/src/defaults.cpp index 2c990c42f..3c663309f 100644 --- a/src/defaults.cpp +++ b/src/defaults.cpp @@ -189,12 +189,8 @@ void setConfigDefaults(Configuration &cfg) AddDEF("screenshotDirectory3", ""); AddDEF("useScreenshotDirectorySuffix", true); AddDEF("screenshotDirectorySuffix", ""); -#ifdef __SWITCH__ AddDEF("joystickEnabled", true); -#else - AddDEF("joystickEnabled", false); -#endif - AddDEF("joystickTolerance", 0.1F); + AddDEF("joystickTolerance", 0.3F); AddDEF("useHatForMovement", true); AddDEF("logNpcInGui", true); AddDEF("download-music", true); |