diff options
| author | bunnei <bunneidev@gmail.com> | 2021-04-24 02:40:31 -0700 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-05-05 16:40:53 -0700 |
| commit | 4b03e6e776e6421c2b2c290b0822b9e5a8556a4c (patch) | |
| tree | 87c2925a7adf4109a77b4f015cd36d803d4221fc /src/core/hle/kernel/k_condition_variable.cpp | |
| parent | 8f5052a514706eb8a15d4f2d80573b1291f37b69 (diff) | |
hle: kernel: Migrate to KHandleTable.
Diffstat (limited to 'src/core/hle/kernel/k_condition_variable.cpp')
| -rw-r--r-- | src/core/hle/kernel/k_condition_variable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_condition_variable.cpp b/src/core/hle/kernel/k_condition_variable.cpp index a9738f7ce..f51cf3e7b 100644 --- a/src/core/hle/kernel/k_condition_variable.cpp +++ b/src/core/hle/kernel/k_condition_variable.cpp @@ -179,7 +179,7 @@ KThread* KConditionVariable::SignalImpl(KThread* thread) { KThread* thread_to_close = nullptr; if (can_access) { - if (prev_tag == InvalidHandle) { + if (prev_tag == Svc::InvalidHandle) { // If nobody held the lock previously, we're all good. thread->SetSyncedObject(nullptr, RESULT_SUCCESS); thread->Wakeup(); |
