summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2016-05-05 21:34:10 -0400
committerGravatar bunnei2016-05-05 21:34:10 -0400
commit4cb2995c6159a5c6508ea0571ffa5fc5bcd21a47 (patch)
tree55d392fefbc402deaf20ac00f0655d7334da92fe /src/core/core.cpp
parenthle: Get rid of global access to g_reschedule (diff)
downloadyuzu-4cb2995c6159a5c6508ea0571ffa5fc5bcd21a47.tar.gz
yuzu-4cb2995c6159a5c6508ea0571ffa5fc5bcd21a47.tar.xz
yuzu-4cb2995c6159a5c6508ea0571ffa5fc5bcd21a47.zip
HLE: Rename RescheduleIsPending to IsReschedulePending.
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 609ca860d..a156682aa 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -52,7 +52,7 @@ void RunLoop(int tight_loop) {
52 } 52 }
53 53
54 HW::Update(); 54 HW::Update();
55 if (HLE::RescheduleIsPending()) { 55 if (HLE::IsReschedulePending()) {
56 Kernel::Reschedule(); 56 Kernel::Reschedule();
57 } 57 }
58} 58}