summaryrefslogtreecommitdiff
path: root/src/input_common/sdl/sdl_impl.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2021-08-12 21:14:26 -0700
committerGravatar GitHub2021-08-12 21:14:26 -0700
commit71d8d84b59ae6e1cfad37d70e6ea7d61001326f3 (patch)
treeaa7bb7bb0c615817020cbf14a810d6d2b08763e5 /src/input_common/sdl/sdl_impl.cpp
parentMerge pull request #6838 from ameerj/sws-align (diff)
parentinput_common: Disable sdl raw input mode (diff)
downloadyuzu-71d8d84b59ae6e1cfad37d70e6ea7d61001326f3.tar.gz
yuzu-71d8d84b59ae6e1cfad37d70e6ea7d61001326f3.tar.xz
yuzu-71d8d84b59ae6e1cfad37d70e6ea7d61001326f3.zip
Merge pull request #6862 from german77/badsdl
input_common: Disable sdl raw input mode
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
-rw-r--r--src/input_common/sdl/sdl_impl.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp
index f1f950d8a..f102410d1 100644
--- a/src/input_common/sdl/sdl_impl.cpp
+++ b/src/input_common/sdl/sdl_impl.cpp
@@ -889,6 +889,9 @@ SDLState::SDLState() {
889 RegisterFactory<VibrationDevice>("sdl", vibration_factory); 889 RegisterFactory<VibrationDevice>("sdl", vibration_factory);
890 RegisterFactory<MotionDevice>("sdl", motion_factory); 890 RegisterFactory<MotionDevice>("sdl", motion_factory);
891 891
892 // Disable raw input. When enabled this setting causes SDL to die when a web applet opens
893 SDL_SetHint(SDL_HINT_JOYSTICK_RAWINPUT, "0");
894
892 // Enable HIDAPI rumble. This prevents SDL from disabling motion on PS4 and PS5 controllers 895 // Enable HIDAPI rumble. This prevents SDL from disabling motion on PS4 and PS5 controllers
893 SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE, "1"); 896 SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE, "1");
894 SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1"); 897 SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1");