diff options
author | Liam <byteslice@airmail.cc> | 2023-03-10 23:04:50 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-03-13 03:10:27 +0100 |
commit | 9775a73d1a83237b584ac2bf49fb2eb9985dee5f (patch) | |
tree | b97b7423c8a100a136346a3407bd2100d8506cb9 | |
parent | kernel: remove unnecessary finalize calls (diff) | |
download | yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar.gz yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar.bz2 yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar.lz yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar.xz yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.tar.zst yuzu-9775a73d1a83237b584ac2bf49fb2eb9985dee5f.zip |
-rw-r--r-- | src/core/hle/kernel/kernel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index f35fa95b5..98ecaf12f 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp @@ -386,10 +386,10 @@ struct KernelCore::Impl { // Gets the dummy KThread for the caller, allocating a new one if this is the first time KThread* GetHostDummyThread(KThread* existing_thread) { - auto initialize = [this](KThread* thread) { + const auto initialize{[](KThread* thread) { ASSERT(KThread::InitializeDummyThread(thread, nullptr).IsSuccess()); return thread; - }; + }}; thread_local KThread raw_thread{system.Kernel()}; thread_local KThread* thread = existing_thread ? existing_thread : initialize(&raw_thread); |