diff options
| -rw-r--r-- | src/core/hle/kernel/k_thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index d058db62c..f46db7298 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h | |||
| @@ -656,7 +656,7 @@ private: | |||
| 656 | static_assert(sizeof(SyncObjectBuffer::sync_objects) == sizeof(SyncObjectBuffer::handles)); | 656 | static_assert(sizeof(SyncObjectBuffer::sync_objects) == sizeof(SyncObjectBuffer::handles)); |
| 657 | 657 | ||
| 658 | struct ConditionVariableComparator { | 658 | struct ConditionVariableComparator { |
| 659 | struct LightCompareType { | 659 | struct RedBlackKeyType { |
| 660 | u64 cv_key{}; | 660 | u64 cv_key{}; |
| 661 | s32 priority{}; | 661 | s32 priority{}; |
| 662 | 662 | ||
| @@ -672,8 +672,8 @@ private: | |||
| 672 | template <typename T> | 672 | template <typename T> |
| 673 | requires( | 673 | requires( |
| 674 | std::same_as<T, KThread> || | 674 | std::same_as<T, KThread> || |
| 675 | std::same_as<T, LightCompareType>) static constexpr int Compare(const T& lhs, | 675 | std::same_as<T, RedBlackKeyType>) static constexpr int Compare(const T& lhs, |
| 676 | const KThread& rhs) { | 676 | const KThread& rhs) { |
| 677 | const u64 l_key = lhs.GetConditionVariableKey(); | 677 | const u64 l_key = lhs.GetConditionVariableKey(); |
| 678 | const u64 r_key = rhs.GetConditionVariableKey(); | 678 | const u64 r_key = rhs.GetConditionVariableKey(); |
| 679 | 679 | ||