summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-05-06 03:45:57 +0200
committerbunnei <bunneidev@gmail.com>2016-05-06 03:45:57 +0200
commit75cbfeee58cd3062cd097dbd355cbd51b840f326 (patch)
treef23ca2b0fc619b2648e3f298a18bfb15f3a8067a /src/core/hle/kernel
parentMerge pull request #1700 from wwylele/gamelist-icon (diff)
parentHLE: Rename RescheduleIsPending to IsReschedulePending. (diff)
downloadyuzu-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/hle/kernel')
-rw-r--r--src/core/hle/kernel/thread.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index bf32f653d..6dc95d0f1 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -483,7 +483,8 @@ void Reschedule() {
Thread* cur = GetCurrentThread();
Thread* next = PopNextReadyThread();
- HLE::g_reschedule = false;
+
+ HLE::DoneRescheduling();
// Don't bother switching to the same thread
if (next == cur)