diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 0e4f6c041..87638c655 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -367,7 +367,7 @@ void Thread::ChangeScheduler() { | |||
| 367 | system.CpuCore(processor_id).PrepareReschedule(); | 367 | system.CpuCore(processor_id).PrepareReschedule(); |
| 368 | } | 368 | } |
| 369 | 369 | ||
| 370 | bool Thread::AllWaitObjectsReady() { | 370 | bool Thread::AllWaitObjectsReady() const { |
| 371 | return std::none_of( | 371 | return std::none_of( |
| 372 | wait_objects.begin(), wait_objects.end(), | 372 | wait_objects.begin(), wait_objects.end(), |
| 373 | [this](const SharedPtr<WaitObject>& object) { return object->ShouldWait(this); }); | 373 | [this](const SharedPtr<WaitObject>& object) { return object->ShouldWait(this); }); |