mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +00:00
kern: fix stray comment copy/paste error
This commit is contained in:
parent
33d42f4831
commit
3292ea5970
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ namespace ams::kern {
|
|||
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) {
|
||||
if (lhs.GetPriority() < rhs.GetPriority()) {
|
||||
/* And then by priority. */
|
||||
/* Sort by priority. */
|
||||
return -1;
|
||||
} else {
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue