HLE: Rename RescheduleIsPending to IsReschedulePending.

This commit is contained in:
bunnei 2016-05-05 21:34:10 -04:00
parent 6b7ebb3f82
commit 4cb2995c61
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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