diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-06 03:45:57 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-06 03:45:57 +0200 |
commit | 75cbfeee58cd3062cd097dbd355cbd51b840f326 (patch) | |
tree | f23ca2b0fc619b2648e3f298a18bfb15f3a8067a /src/core/core.cpp | |
parent | Merge pull request #1700 from wwylele/gamelist-icon (diff) | |
parent | HLE: Rename RescheduleIsPending to IsReschedulePending. (diff) | |
download | yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.gz yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.bz2 yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.lz yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.xz yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.zst yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.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 3bb843aab..cabab744a 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -51,7 +51,7 @@ void RunLoop(int tight_loop) { } HW::Update(); - if (HLE::g_reschedule) { + if (HLE::IsReschedulePending()) { Kernel::Reschedule(); } } |