mirror of
https://github.com/ppy/osu.git
synced 2025-03-14 05:47:20 +08: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)
|
||||
return false;
|
||||
|
||||
if (!IsInclusive && comparison == 0)
|
||||
if (comparison == 0 && !IsInclusive)
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -64,7 +64,7 @@ namespace osu.Game.Screens.Select
|
||||
if (comparison > 0)
|
||||
return false;
|
||||
|
||||
if (!IsInclusive && comparison == 0)
|
||||
if (comparison == 0 && !IsInclusive)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user