summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-10 18:16:58 -0500
committerGitHub <noreply@github.com>2023-12-10 18:16:58 -0500
commit62586c167653b12f22d8440ff79248023a566115 (patch)
tree5147ffc8b706084d6b3133f0028599d3f5f2e2f5 /src/core/hle/kernel
parent108737fcc6244c34b4a6bdb542a6fd7a4006b86e (diff)
parent1d731dd1ff89841966300ff9914d3c406a977f2d (diff)
Merge pull request #12317 from liamwhite/sc-fix
kernel: fix single core
Diffstat (limited to 'src/core/hle/kernel')
-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;
}
}