summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValeri <v19930312@gmail.com>2022-01-17 11:51:12 +0100
committerGitHub <noreply@github.com>2022-01-17 11:51:12 +0100
commit84786dde0017959f3499a54407a389af31ff8c80 (patch)
treea220d2ca16d14842c9dbd89a052909f41482a6b2
parentMerge pull request #7719 from gidoly/patch-6 (diff)
downloadyuzu-84786dde0017959f3499a54407a389af31ff8c80.tar
yuzu-84786dde0017959f3499a54407a389af31ff8c80.tar.gz
yuzu-84786dde0017959f3499a54407a389af31ff8c80.tar.bz2
yuzu-84786dde0017959f3499a54407a389af31ff8c80.tar.lz
yuzu-84786dde0017959f3499a54407a389af31ff8c80.tar.xz
yuzu-84786dde0017959f3499a54407a389af31ff8c80.tar.zst
yuzu-84786dde0017959f3499a54407a389af31ff8c80.zip
-rw-r--r--src/core/hle/kernel/k_scheduler.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_scheduler.cpp b/src/core/hle/kernel/k_scheduler.cpp
index 31cec990e..f900b2e7a 100644
--- a/src/core/hle/kernel/k_scheduler.cpp
+++ b/src/core/hle/kernel/k_scheduler.cpp
@@ -49,8 +49,6 @@ void KScheduler::RescheduleCores(KernelCore& kernel, u64 cores_pending_reschedul
if (!must_context_switch || core != current_core) {
auto& phys_core = kernel.PhysicalCore(core);
phys_core.Interrupt();
- } else {
- must_context_switch = true;
}
cores_pending_reschedule &= ~(1ULL << core);
}