Procházet zdrojové kódy

HLE: Rename RescheduleIsPending to IsReschedulePending.

bunnei před 10 roky
rodič
revize
4cb2995c61
3 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 1 1
      src/core/core.cpp
  2. 1 1
      src/core/hle/hle.cpp
  3. 1 1
      src/core/hle/hle.h

+ 1 - 1
src/core/core.cpp

@@ -52,7 +52,7 @@ void RunLoop(int tight_loop) {
     }
 
     HW::Update();
-    if (HLE::RescheduleIsPending()) {
+    if (HLE::IsReschedulePending()) {
         Kernel::Reschedule();
     }
 }

+ 1 - 1
src/core/hle/hle.cpp

@@ -36,7 +36,7 @@ void Reschedule(const char *reason) {
     reschedule = true;
 }
 
-bool RescheduleIsPending() {
+bool IsReschedulePending() {
     return reschedule;
 }
 

+ 1 - 1
src/core/hle/hle.h

@@ -14,7 +14,7 @@ const Handle INVALID_HANDLE = 0;
 namespace HLE {
 
 void Reschedule(const char *reason);
-bool RescheduleIsPending();
+bool IsReschedulePending();
 void DoneRescheduling();
 
 void Init();