core: use internal kernel pointer directly
This commit is contained in:
parent
e5b93741d3
commit
2183d0d6be
|
@ -59,7 +59,7 @@ System::ResultStatus System::RunLoop(bool tight_loop) {
|
|||
|
||||
// If we don't have a currently active thread then don't execute instructions,
|
||||
// instead advance to the next event and try to yield to the next thread
|
||||
if (Kernel().GetThreadManager().GetCurrentThread() == nullptr) {
|
||||
if (kernel->GetThreadManager().GetCurrentThread() == nullptr) {
|
||||
LOG_TRACE(Core_ARM11, "Idling");
|
||||
CoreTiming::Idle();
|
||||
CoreTiming::Advance();
|
||||
|
|
Reference in New Issue