summaryrefslogtreecommitdiffstats
path: root/src/input_common
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-06-27 00:49:14 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2022-06-29 02:22:16 +0200
commit5e7e55b98a22b8db0e3f8982837a306b6b66f61e (patch)
tree91f1389534b7f490364b2cc48753fe95010c9e42 /src/input_common
parentMerge pull request #8512 from german77/nnResult (diff)
downloadyuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.gz
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.bz2
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.lz
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.xz
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.tar.zst
yuzu-5e7e55b98a22b8db0e3f8982837a306b6b66f61e.zip
Diffstat (limited to 'src/input_common')
-rw-r--r--src/input_common/drivers/sdl_driver.cpp10
-rw-r--r--src/input_common/drivers/sdl_driver.h1
2 files changed, 10 insertions, 1 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp
index 446c027d3..00474ac77 100644
--- a/src/input_common/drivers/sdl_driver.cpp
+++ b/src/input_common/drivers/sdl_driver.cpp
@@ -438,10 +438,17 @@ SDLDriver::SDLDriver(std::string input_engine_) : InputEngine(std::move(input_en
using namespace std::chrono_literals;
while (initialized) {
SDL_PumpEvents();
- SendVibrations();
std::this_thread::sleep_for(1ms);
}
});
+ vibration_thread = std::thread([this] {
+ Common::SetCurrentThreadName("yuzu:input:SDL_Vibration");
+ using namespace std::chrono_literals;
+ while (initialized) {
+ SendVibrations();
+ std::this_thread::sleep_for(10ms);
+ }
+ });
}
// Because the events for joystick connection happens before we have our event watcher added, we
// can just open all the joysticks right here
@@ -457,6 +464,7 @@ SDLDriver::~SDLDriver() {
initialized = false;
if (start_thread) {
poll_thread.join();
+ vibration_thread.join();
SDL_QuitSubSystem(SDL_INIT_JOYSTICK | SDL_INIT_GAMECONTROLLER);
}
}
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