summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-03 17:46:17 +0200
committerGitHub <noreply@github.com>2019-04-03 17:46:17 +0200
commit74a4a5047017f9ed01d7139a1e6aee258382b91d (patch)
tree49df4085cc5210019d561ab1a0abe787a1dbc514 /src/core/hle/kernel/process.cpp
parentMerge pull request #2326 from lioncash/translation (diff)
parentkernel/thread: Make AllWaitObjectsReady() a const qualified member function (diff)
downloadyuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.gz
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.bz2
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.lz
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.xz
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.tar.zst
yuzu-74a4a5047017f9ed01d7139a1e6aee258382b91d.zip
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 52f253d1e..041267318 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -257,7 +257,7 @@ void Process::Acquire(Thread* thread) {
ASSERT_MSG(!ShouldWait(thread), "Object unavailable!");
}
-bool Process::ShouldWait(Thread* thread) const {
+bool Process::ShouldWait(const Thread* thread) const {
return !is_signaled;
}