summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
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 b0b7af76b..6e98d78a2 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -247,7 +247,7 @@ void Process::Acquire(Thread* thread) {
247 ASSERT_MSG(!ShouldWait(thread), "Object unavailable!"); 247 ASSERT_MSG(!ShouldWait(thread), "Object unavailable!");
248} 248}
249 249
250bool Process::ShouldWait(Thread* thread) const { 250bool Process::ShouldWait(const Thread* thread) const {
251 return !is_signaled; 251 return !is_signaled;
252} 252}
253 253