summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar Liam2023-12-08 19:40:03 -0500
committerGravatar Liam2023-12-08 20:31:18 -0500
commit1d731dd1ff89841966300ff9914d3c406a977f2d (patch)
treef9b002e45e54495aad7299efea4c28629493b023 /src/core/hle/kernel
parentMerge pull request #12274 from liamwhite/srgb-nonsense (diff)
downloadyuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.gz
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.xz
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.zip
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) {
139 } 139 }
140 140
141 // Handle external interrupt sources. 141 // Handle external interrupt sources.
142 if (interrupt || !m_is_single_core) { 142 if (interrupt || m_is_single_core) {
143 return; 143 return;
144 } 144 }
145 } 145 }