mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 11:02:45 +02:00
kern: fix stray comment copy/paste error
This commit is contained in:
parent
6cb324a89c
commit
a556909c10
@ -214,7 +214,7 @@ namespace ams::kern {
|
|||||||
template<typename T> requires (std::same_as<T, KThread> || std::same_as<T, RedBlackKeyType>)
|
template<typename T> requires (std::same_as<T, KThread> || std::same_as<T, RedBlackKeyType>)
|
||||||
static constexpr ALWAYS_INLINE int Compare(const T &lhs, const KThread &rhs) {
|
static constexpr ALWAYS_INLINE int Compare(const T &lhs, const KThread &rhs) {
|
||||||
if (lhs.GetPriority() < rhs.GetPriority()) {
|
if (lhs.GetPriority() < rhs.GetPriority()) {
|
||||||
/* And then by priority. */
|
/* Sort by priority. */
|
||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user