summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2021-08-19 10:39:35 -0400
committerGravatar GitHub2021-08-19 10:39:35 -0400
commitaa74aaf38f6a70932f84034d2783f7d0c38ae5fe (patch)
treec5e068b9484366c66ea02ee5297d3ab2a8ad0717 /src
parentMerge pull request #6832 from bunnei/scheduler-improvements (diff)
parentFix check is thread current in GetThreadContext (diff)
downloadyuzu-aa74aaf38f6a70932f84034d2783f7d0c38ae5fe.tar.gz
yuzu-aa74aaf38f6a70932f84034d2783f7d0c38ae5fe.tar.xz
yuzu-aa74aaf38f6a70932f84034d2783f7d0c38ae5fe.zip
Merge pull request #6884 from v1993/patch-1
Fix check is thread current in GetThreadContext
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 a90b291da..890c52198 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1078,8 +1078,8 @@ static ResultCode GetThreadContext(Core::System& system, VAddr out_context, Hand
1078 for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) { 1078 for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) {
1079 if (thread.GetPointerUnsafe() == kernel.Scheduler(i).GetCurrentThread()) { 1079 if (thread.GetPointerUnsafe() == kernel.Scheduler(i).GetCurrentThread()) {
1080 current = true; 1080 current = true;
1081 break;
1081 } 1082 }
1082 break;
1083 } 1083 }
1084 1084
1085 // If the thread is current, retry until it isn't. 1085 // If the thread is current, retry until it isn't.