Explorar o código

Merge pull request #12317 from liamwhite/sc-fix

kernel: fix single core
liamwhite %!s(int64=2) %!d(string=hai) anos
pai
achega
62586c1676
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/kernel/physical_core.cpp

+ 1 - 1
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;
         }
     }