diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index a3a17e6c0..b23638bd1 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -58,7 +58,7 @@ public: | |||
| 58 | inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } | 58 | inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } |
| 59 | inline bool IsIdle() const { return idle; } | 59 | inline bool IsIdle() const { return idle; } |
| 60 | 60 | ||
| 61 | ResultVal<bool> Wait() override; | 61 | ResultVal<bool> ShouldWait() override; |
| 62 | ResultVal<bool> Acquire() override; | 62 | ResultVal<bool> Acquire() override; |
| 63 | 63 | ||
| 64 | s32 GetPriority() const { return current_priority; } | 64 | s32 GetPriority() const { return current_priority; } |