diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-22 14:07:22 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-01-09 07:02:15 +0100 |
commit | 9bf8462b96d34b30f62b8aca745dd558e7f0a450 (patch) | |
tree | 32606d5176a82daa4e59bb47bede34d4a941780a /src/core/core.cpp | |
parent | Kernel: Move Thread's definition to the header file (diff) | |
download | yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.gz yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.bz2 yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.lz yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.xz yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.tar.zst yuzu-9bf8462b96d34b30f62b8aca745dd558e7f0a450.zip |
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 void RunLoop(int tight_loop) { // If the current thread is an idle thread, then don't execute instructions, // instead advance to the next event and try to yield to the next thread - if (Kernel::IsIdleThread(Kernel::GetCurrentThreadHandle())) { + if (Kernel::GetCurrentThread()->IsIdle()) { LOG_TRACE(Core_ARM11, "Idling"); CoreTiming::Idle(); CoreTiming::Advance(); |