diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index cf25f87ca..e9e5c35cc 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -25,7 +25,7 @@ ARM_Interface* g_sys_core = nullptr; ///< ARM11 system (OS) core | |||
| 25 | void RunLoop(int tight_loop) { | 25 | void RunLoop(int tight_loop) { |
| 26 | // If the current thread is an idle thread, then don't execute instructions, | 26 | // If the current thread is an idle thread, then don't execute instructions, |
| 27 | // instead advance to the next event and try to yield to the next thread | 27 | // instead advance to the next event and try to yield to the next thread |
| 28 | if (Kernel::IsIdleThread(Kernel::GetCurrentThreadHandle())) { | 28 | if (Kernel::GetCurrentThread()->IsIdle()) { |
| 29 | LOG_TRACE(Core_ARM11, "Idling"); | 29 | LOG_TRACE(Core_ARM11, "Idling"); |
| 30 | CoreTiming::Idle(); | 30 | CoreTiming::Idle(); |
| 31 | CoreTiming::Advance(); | 31 | CoreTiming::Advance(); |