mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 16:55:46 +00:00
Merge pull request #12317 from liamwhite/sc-fix
kernel: fix single core
This commit is contained in:
commit
12b8cd2ffb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue