Ver Fonte

hle: kernel: threading: Fix bug with host thread naming.

bunnei há 5 anos atrás
pai
commit
ff46ef7ea3
1 ficheiros alterados com 2 adições e 3 exclusões
  1. 2 3
      src/core/hle/kernel/kernel.cpp

+ 2 - 3
src/core/hle/kernel/kernel.cpp

@@ -211,9 +211,8 @@ struct KernelCore::Impl {
     KThread* GetHostDummyThread() {
         const thread_local auto thread =
             KThread::Create(
-                system, ThreadType::Main,
-                std::string{"DummyThread:" + GetHostThreadId()}, 0, KThread::DefaultThreadPriority,
-                0, static_cast<u32>(3), 0, nullptr,
+                system, ThreadType::Main, fmt::format("DummyThread:{}", GetHostThreadId()), 0,
+                KThread::DefaultThreadPriority, 0, static_cast<u32>(3), 0, nullptr,
                 []([[maybe_unused]] void* arg) { UNREACHABLE(); }, nullptr)
                 .Unwrap();
         return thread.get();