diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-14 20:41:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 20:41:29 -0400 |
commit | 9627c550a0c4403813af23d6bdf5348aef0d08d7 (patch) | |
tree | df0f702a3777a500dc09bdbb136f339b6c6ca0a7 /src/input_common/drivers/sdl_driver.h | |
parent | 802bbb226389c073cc82821b021a7b1209c5f12f (diff) | |
parent | 5e7e55b98a22b8db0e3f8982837a306b6b66f61e (diff) |
Merge pull request #8510 from german77/vibration
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.h | 1 |
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: std::atomic<bool> initialized = false; std::thread poll_thread; + std::thread vibration_thread; }; } // namespace InputCommon |