瀏覽代碼

kernel: fix single core

Liam 2 年之前
父節點
當前提交
1d731dd1ff
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
         }
     }