diff options
| author | 2016-05-05 21:45:57 -0400 | |
|---|---|---|
| committer | 2016-05-05 21:45:57 -0400 | |
| commit | 75cbfeee58cd3062cd097dbd355cbd51b840f326 (patch) | |
| tree | f23ca2b0fc619b2648e3f298a18bfb15f3a8067a /src/core/hle/hle.h | |
| parent | Merge pull request #1700 from wwylele/gamelist-icon (diff) | |
| parent | HLE: Rename RescheduleIsPending to IsReschedulePending. (diff) | |
| download | yuzu-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/hle/hle.h')
| -rw-r--r-- | src/core/hle/hle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index e0b97797c..69ac0ade6 100644 --- a/src/core/hle/hle.h +++ b/src/core/hle/hle.h | |||
| @@ -13,9 +13,9 @@ const Handle INVALID_HANDLE = 0; | |||
| 13 | 13 | ||
| 14 | namespace HLE { | 14 | namespace HLE { |
| 15 | 15 | ||
| 16 | extern bool g_reschedule; ///< If true, immediately reschedules the CPU to a new thread | ||
| 17 | |||
| 18 | void Reschedule(const char *reason); | 16 | void Reschedule(const char *reason); |
| 17 | bool IsReschedulePending(); | ||
| 18 | void DoneRescheduling(); | ||
| 19 | 19 | ||
| 20 | void Init(); | 20 | void Init(); |
| 21 | void Shutdown(); | 21 | void Shutdown(); |