summaryrefslogtreecommitdiff
path: root/src/input_common/drivers/sdl_driver.h
diff options
context:
space:
mode:
authorGravatar german772022-06-26 17:49:14 -0500
committerGravatar Narr the Reg2022-06-28 19:22:16 -0500
commit5e7e55b98a22b8db0e3f8982837a306b6b66f61e (patch)
tree91f1389534b7f490364b2cc48753fe95010c9e42 /src/input_common/drivers/sdl_driver.h
parentMerge pull request #8512 from german77/nnResult (diff)
downloadyuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.gz
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.xz
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.zip
input_common: sdl: lower vibration frequency and use it's own unique thread
Diffstat (limited to 'src/input_common/drivers/sdl_driver.h')
-rw-r--r--src/input_common/drivers/sdl_driver.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_common/drivers/sdl_driver.h b/src/input_common/drivers/sdl_driver.h
index 0846fbb50..7dc7a93c7 100644
--- a/src/input_common/drivers/sdl_driver.h
+++ b/src/input_common/drivers/sdl_driver.h
@@ -128,5 +128,6 @@ private:
128 std::atomic<bool> initialized = false; 128 std::atomic<bool> initialized = false;
129 129
130 std::thread poll_thread; 130 std::thread poll_thread;
131 std::thread vibration_thread;
131}; 132};
132} // namespace InputCommon 133} // namespace InputCommon