Browse Source
Merge pull request #12317 from liamwhite/sc-fix
kernel: fix single core
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
|