浏览代码

input_common: Fix error with thread name

Narr the Reg 4 年之前
父节点
当前提交
e4492a9a82
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/input_common/drivers/sdl_driver.cpp

+ 1 - 2
src/input_common/drivers/sdl_driver.cpp

@@ -388,8 +388,6 @@ void SDLDriver::CloseJoysticks() {
 }
 
 SDLDriver::SDLDriver(const std::string& input_engine_) : InputEngine(input_engine_) {
-    Common::SetCurrentThreadName("yuzu:input:SDL");
-
     if (!Settings::values.enable_raw_input) {
         // Disable raw input. When enabled this setting causes SDL to die when a web applet opens
         SDL_SetHint(SDL_HINT_JOYSTICK_RAWINPUT, "0");
@@ -422,6 +420,7 @@ SDLDriver::SDLDriver(const std::string& input_engine_) : InputEngine(input_engin
     initialized = true;
     if (start_thread) {
         poll_thread = std::thread([this] {
+            Common::SetCurrentThreadName("yuzu:input:SDL");
             using namespace std::chrono_literals;
             while (initialized) {
                 SDL_PumpEvents();