diff options
author | Liam <byteslice@airmail.cc> | 2023-02-23 21:49:42 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-03-01 16:42:45 +0100 |
commit | c4ba088a5df13ff4b4d8853216231d690f2c79c0 (patch) | |
tree | 342ac4bde84bf135918bf425b5271a3599d572db /src/core/hle/kernel/k_process.cpp | |
parent | kernel: simplify AddressSpaceInfo, update values (diff) | |
download | yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar.gz yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar.bz2 yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar.lz yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar.xz yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.tar.zst yuzu-c4ba088a5df13ff4b4d8853216231d690f2c79c0.zip |
Diffstat (limited to 'src/core/hle/kernel/k_process.cpp')
-rw-r--r-- | src/core/hle/kernel/k_process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index d9c1a0eb3..514f20ef4 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp @@ -156,9 +156,9 @@ bool KProcess::ReleaseUserException(KThread* thread) { exception_thread = nullptr; // Remove waiter thread. - s32 num_waiters{}; + bool has_waiters{}; if (KThread* next = thread->RemoveWaiterByKey( - std::addressof(num_waiters), + std::addressof(has_waiters), reinterpret_cast<uintptr_t>(std::addressof(exception_thread))); next != nullptr) { next->EndWait(ResultSuccess); |