diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp index 7fa8e2a852..0f45a32494 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; } }