summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2016-05-05 21:45:57 -0400
committerGravatar bunnei2016-05-05 21:45:57 -0400
commit75cbfeee58cd3062cd097dbd355cbd51b840f326 (patch)
treef23ca2b0fc619b2648e3f298a18bfb15f3a8067a /src/core/core.cpp
parentMerge pull request #1700 from wwylele/gamelist-icon (diff)
parentHLE: Rename RescheduleIsPending to IsReschedulePending. (diff)
downloadyuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.gz
yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.tar.xz
yuzu-75cbfeee58cd3062cd097dbd355cbd51b840f326.zip
Merge pull request #1762 from bunnei/global
hle: Get rid of direct global access to g_reschedule
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp2
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) {
51 } 51 }
52 52
53 HW::Update(); 53 HW::Update();
54 if (HLE::g_reschedule) { 54 if (HLE::IsReschedulePending()) {
55 Kernel::Reschedule(); 55 Kernel::Reschedule();
56 } 56 }
57} 57}