mirror of
https://github.com/osukey/osukey.git
synced 2025-06-22 19:57:56 +09:00
Reorder comparison for readability
This commit is contained in:
parent
e075dd7ea8
commit
96ea507320
@ -53,7 +53,7 @@ namespace osu.Game.Screens.Select
|
|||||||
if (comparison < 0)
|
if (comparison < 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!IsInclusive && comparison == 0)
|
if (comparison == 0 && !IsInclusive)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,7 +64,7 @@ namespace osu.Game.Screens.Select
|
|||||||
if (comparison > 0)
|
if (comparison > 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!IsInclusive && comparison == 0)
|
if (comparison == 0 && !IsInclusive)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user