diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-12-10 18:16:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-10 18:16:58 -0500 |
commit | 62586c167653b12f22d8440ff79248023a566115 (patch) | |
tree | 5147ffc8b706084d6b3133f0028599d3f5f2e2f5 /src/core/hle/kernel | |
parent | 108737fcc6244c34b4a6bdb542a6fd7a4006b86e (diff) | |
parent | 1d731dd1ff89841966300ff9914d3c406a977f2d (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.cpp | 2 |
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; } } |