diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/core.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/hle.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/hle.h | 2 |
3 files changed, 3 insertions, 3 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 | } |
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp index 3b1369800..96d3ec05b 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp | |||
| @@ -36,7 +36,7 @@ void Reschedule(const char *reason) { | |||
| 36 | reschedule = true; | 36 | reschedule = true; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | bool RescheduleIsPending() { | 39 | bool IsReschedulePending() { |
| 40 | return reschedule; | 40 | return reschedule; |
| 41 | } | 41 | } |
| 42 | 42 | ||
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index 58dffe587..69ac0ade6 100644 --- a/src/core/hle/hle.h +++ b/src/core/hle/hle.h | |||
| @@ -14,7 +14,7 @@ const Handle INVALID_HANDLE = 0; | |||
| 14 | namespace HLE { | 14 | namespace HLE { |
| 15 | 15 | ||
| 16 | void Reschedule(const char *reason); | 16 | void Reschedule(const char *reason); |
| 17 | bool RescheduleIsPending(); | 17 | bool IsReschedulePending(); |
| 18 | void DoneRescheduling(); | 18 | void DoneRescheduling(); |
| 19 | 19 | ||
| 20 | void Init(); | 20 | void Init(); |