1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 09:03:54 +08:00

Fix code inspection

This commit is contained in:
Bartłomiej Dach
2025-05-13 11:37:52 +02:00
Unverified
parent eaa7af58d5
commit 79f88528ae
@@ -166,7 +166,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
localPlayerMarker.MoveToX(marker_size / 2 + Math.Min(relativePosition * (width - marker_size / 2), width - marker_size / 2), 1000, Easing.OutPow10);
}
private class PositionCounter : RollingCounter<int>
private partial class PositionCounter : RollingCounter<int>
{
protected override double RollingDuration => Current.Value > 0 ? 1000 : 0;
protected override Easing RollingEasing => Easing.OutPow10;