diff options
| author | 2022-10-05 18:53:42 -0700 | |
|---|---|---|
| committer | 2022-10-05 18:53:42 -0700 | |
| commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
| tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/input_common/drivers/sdl_driver.cpp | |
| parent | Merge pull request #9015 from german77/amiibo-rewrite (diff) | |
| parent | common: remove "yuzu:" prefix from thread names (diff) | |
| download | yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip | |
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/input_common/drivers/sdl_driver.cpp')
| -rw-r--r-- | src/input_common/drivers/sdl_driver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp index 5cc1ccbd9..b72e4b397 100644 --- a/src/input_common/drivers/sdl_driver.cpp +++ b/src/input_common/drivers/sdl_driver.cpp | |||
| @@ -436,7 +436,7 @@ SDLDriver::SDLDriver(std::string input_engine_) : InputEngine(std::move(input_en | |||
| 436 | initialized = true; | 436 | initialized = true; |
| 437 | if (start_thread) { | 437 | if (start_thread) { |
| 438 | poll_thread = std::thread([this] { | 438 | poll_thread = std::thread([this] { |
| 439 | Common::SetCurrentThreadName("yuzu:input:SDL"); | 439 | Common::SetCurrentThreadName("SDL_MainLoop"); |
| 440 | using namespace std::chrono_literals; | 440 | using namespace std::chrono_literals; |
| 441 | while (initialized) { | 441 | while (initialized) { |
| 442 | SDL_PumpEvents(); | 442 | SDL_PumpEvents(); |
| @@ -444,7 +444,7 @@ SDLDriver::SDLDriver(std::string input_engine_) : InputEngine(std::move(input_en | |||
| 444 | } | 444 | } |
| 445 | }); | 445 | }); |
| 446 | vibration_thread = std::thread([this] { | 446 | vibration_thread = std::thread([this] { |
| 447 | Common::SetCurrentThreadName("yuzu:input:SDL_Vibration"); | 447 | Common::SetCurrentThreadName("SDL_Vibration"); |
| 448 | using namespace std::chrono_literals; | 448 | using namespace std::chrono_literals; |
| 449 | while (initialized) { | 449 | while (initialized) { |
| 450 | SendVibrations(); | 450 | SendVibrations(); |