1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 21:02:55 +08:00

fix confusing return statement at the end

This commit is contained in:
OliBomby 2024-08-16 01:45:28 +02:00
parent 3a84409546
commit 3565a10ea2

View File

@ -82,11 +82,10 @@ namespace osu.Game.Utils
case EqualitySelection.Leftmost:
return min;
default:
case EqualitySelection.Rightmost:
return min - 1;
}
return ~min;
}
}