diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-02 00:19:42 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-02 00:19:45 +0200 |
commit | 20cc0b8d3cd46dfc8eed7689f93b6d41f320c709 (patch) | |
tree | b1f78f8b7a5364d9fb17498eb469b414160827d8 /src/core/hle/kernel/wait_object.h | |
parent | kernel/thread: Avoid sign conversion within GetCommandBufferAddress() (diff) | |
download | yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.gz yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.bz2 yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.lz yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.xz yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.tar.zst yuzu-20cc0b8d3cd46dfc8eed7689f93b6d41f320c709.zip |
Diffstat (limited to 'src/core/hle/kernel/wait_object.h')
-rw-r--r-- | src/core/hle/kernel/wait_object.h | 2 |
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; |