summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorMarkus Wick <markus@selfnet.de>2021-05-29 08:55:37 +0200
committerMarkus Wick <markus@selfnet.de>2021-05-29 08:57:44 +0200
commit5a8cd1b118230450aeec8d770db87331bbc60812 (patch)
treec100df6aa459de10b6162ae8d446d26e9623d2ef /src/core/hle/kernel
parentMerge pull request #6371 from degasus/drop_ExceptionalExit (diff)
downloadyuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar.gz
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar.bz2
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar.lz
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar.xz
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.tar.zst
yuzu-5a8cd1b118230450aeec8d770db87331bbc60812.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 8b55df82e..7ca2a2ef1 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -258,7 +258,7 @@ struct KernelCore::Impl {
KAutoObject::Create(thread.get());
ASSERT(KThread::InitializeDummyThread(thread.get()).IsSuccess());
thread->SetName(fmt::format("DummyThread:{}", GetHostThreadId()));
- return std::move(thread);
+ return thread;
};
thread_local auto thread = make_thread();