summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-11 00:16:58 +0100
committerGitHub <noreply@github.com>2023-12-11 00:16:58 +0100
commit62586c167653b12f22d8440ff79248023a566115 (patch)
tree5147ffc8b706084d6b3133f0028599d3f5f2e2f5
parentMerge pull request #12321 from liamwhite/ro2 (diff)
parentkernel: fix single core (diff)
downloadyuzu-62586c167653b12f22d8440ff79248023a566115.tar
yuzu-62586c167653b12f22d8440ff79248023a566115.tar.gz
yuzu-62586c167653b12f22d8440ff79248023a566115.tar.bz2
yuzu-62586c167653b12f22d8440ff79248023a566115.tar.lz
yuzu-62586c167653b12f22d8440ff79248023a566115.tar.xz
yuzu-62586c167653b12f22d8440ff79248023a566115.tar.zst
yuzu-62586c167653b12f22d8440ff79248023a566115.zip
-rw-r--r--src/core/hle/kernel/physical_core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp
index 7fa8e2a85..0f45a3249 100644
--- a/src/core/hle/kernel/physical_core.cpp
+++ b/src/core/hle/kernel/physical_core.cpp
@@ -139,7 +139,7 @@ void PhysicalCore::RunThread(Kernel::KThread* thread) {
}
// Handle external interrupt sources.
- if (interrupt || !m_is_single_core) {
+ if (interrupt || m_is_single_core) {
return;
}
}