summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-11-21 16:03:37 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-11-21 16:13:29 +0100
commit46bb6099814a6ff404d337164ced016ec04ea7b9 (patch)
tree2ea68335bff35e36fa0999cef430ca022ecaae43 /src/core/hle/kernel/svc.cpp
parentKernel: Correct SignalProcessWideKey (diff)
downloadyuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar.gz
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar.bz2
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar.lz
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar.xz
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.tar.zst
yuzu-46bb6099814a6ff404d337164ced016ec04ea7b9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4fdb6d429..e2cf84624 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1661,8 +1661,8 @@ static ResultCode SignalProcessWideKey(Core::System& system, VAddr condition_var
ASSERT(thread->GetCondVarWaitAddress() == condition_variable_addr);
// liberate Cond Var Thread.
- thread->SetCondVarWaitAddress(0);
current_process->RemoveConditionVariableThread(thread);
+ thread->SetCondVarWaitAddress(0);
const std::size_t current_core = system.CurrentCoreIndex();
auto& monitor = system.Monitor();