Просмотр исходного кода

core: hle: kernel: k_condition_variable: Update to reflect tree changes.

bunnei 4 лет назад
Родитель
Сommit
944d9186ca
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/kernel/k_condition_variable.cpp

+ 1 - 1
src/core/hle/kernel/k_condition_variable.cpp

@@ -244,7 +244,7 @@ void KConditionVariable::Signal(u64 cv_key, s32 count) {
     {
     {
         KScopedSchedulerLock sl(kernel);
         KScopedSchedulerLock sl(kernel);
 
 
-        auto it = thread_tree.nfind_light({cv_key, -1});
+        auto it = thread_tree.nfind_key({cv_key, -1});
         while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) &&
         while ((it != thread_tree.end()) && (count <= 0 || num_waiters < count) &&
                (it->GetConditionVariableKey() == cv_key)) {
                (it->GetConditionVariableKey() == cv_key)) {
             KThread* target_thread = std::addressof(*it);
             KThread* target_thread = std::addressof(*it);