summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValeri <v19930312@gmail.com>2021-08-19 15:46:30 +0200
committerGitHub <noreply@github.com>2021-08-19 15:46:30 +0200
commit0b3d12be406a3a0ddb181293a8a87c4623e2009b (patch)
treec5e068b9484366c66ea02ee5297d3ab2a8ad0717
parentMerge pull request #6832 from bunnei/scheduler-improvements (diff)
downloadyuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar.gz
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar.bz2
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar.lz
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar.xz
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.tar.zst
yuzu-0b3d12be406a3a0ddb181293a8a87c4623e2009b.zip
-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
for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) {
if (thread.GetPointerUnsafe() == kernel.Scheduler(i).GetCurrentThread()) {
current = true;
+ break;
}
- break;
}
// If the thread is current, retry until it isn't.