diff options
| author | 2021-11-29 21:03:47 -0600 | |
|---|---|---|
| committer | 2021-11-29 22:03:47 -0500 | |
| commit | e4492a9a821659cd0c4e874234020cdb630a108b (patch) | |
| tree | 209825871063faaf29015315aa9990502cc75c74 /src/input_common/drivers/sdl_driver.cpp | |
| parent | Merge pull request #7466 from vonchenplus/add_miss_pixel_format_mapping (diff) | |
| download | yuzu-e4492a9a821659cd0c4e874234020cdb630a108b.tar.gz yuzu-e4492a9a821659cd0c4e874234020cdb630a108b.tar.xz yuzu-e4492a9a821659cd0c4e874234020cdb630a108b.zip | |
input_common: Fix error with thread name
Diffstat (limited to 'src/input_common/drivers/sdl_driver.cpp')
| -rw-r--r-- | src/input_common/drivers/sdl_driver.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp index 90128b6cf..1052ed394 100644 --- a/src/input_common/drivers/sdl_driver.cpp +++ b/src/input_common/drivers/sdl_driver.cpp | |||
| @@ -388,8 +388,6 @@ void SDLDriver::CloseJoysticks() { | |||
| 388 | } | 388 | } |
| 389 | 389 | ||
| 390 | SDLDriver::SDLDriver(const std::string& input_engine_) : InputEngine(input_engine_) { | 390 | SDLDriver::SDLDriver(const std::string& input_engine_) : InputEngine(input_engine_) { |
| 391 | Common::SetCurrentThreadName("yuzu:input:SDL"); | ||
| 392 | |||
| 393 | if (!Settings::values.enable_raw_input) { | 391 | if (!Settings::values.enable_raw_input) { |
| 394 | // Disable raw input. When enabled this setting causes SDL to die when a web applet opens | 392 | // Disable raw input. When enabled this setting causes SDL to die when a web applet opens |
| 395 | SDL_SetHint(SDL_HINT_JOYSTICK_RAWINPUT, "0"); | 393 | SDL_SetHint(SDL_HINT_JOYSTICK_RAWINPUT, "0"); |
| @@ -422,6 +420,7 @@ SDLDriver::SDLDriver(const std::string& input_engine_) : InputEngine(input_engin | |||
| 422 | initialized = true; | 420 | initialized = true; |
| 423 | if (start_thread) { | 421 | if (start_thread) { |
| 424 | poll_thread = std::thread([this] { | 422 | poll_thread = std::thread([this] { |
| 423 | Common::SetCurrentThreadName("yuzu:input:SDL"); | ||
| 425 | using namespace std::chrono_literals; | 424 | using namespace std::chrono_literals; |
| 426 | while (initialized) { | 425 | while (initialized) { |
| 427 | SDL_PumpEvents(); | 426 | SDL_PumpEvents(); |