aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/wait_object.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-03 11:46:17 -0400
committerGitHub <noreply@github.com>2019-04-03 11:46:17 -0400
commit74a4a5047017f9ed01d7139a1e6aee258382b91d (patch)
tree49df4085cc5210019d561ab1a0abe787a1dbc514 /src/core/hle/kernel/wait_object.h
parent774fa0b828ed3b63bd1df1542364693782740878 (diff)
parent436624173916c2aea8d0ea0e83bebb299da281b2 (diff)
Merge pull request #2314 from lioncash/const
kernel/thread: Minor interface cleanup
Diffstat (limited to 'src/core/hle/kernel/wait_object.h')
-rw-r--r--src/core/hle/kernel/wait_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/wait_object.h b/src/core/hle/kernel/wait_object.h
index 5987fb971..04464a51a 100644
--- a/src/core/hle/kernel/wait_object.h
+++ b/src/core/hle/kernel/wait_object.h
@@ -24,7 +24,7 @@ public:
* @param thread The thread about which we're deciding.
* @return True if the current thread should wait due to this object being unavailable
*/
- virtual bool ShouldWait(Thread* thread) const = 0;
+ virtual bool ShouldWait(const Thread* thread) const = 0;
/// Acquire/lock the object for the specified thread if it is available
virtual void Acquire(Thread* thread) = 0;