1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 13:22:59 +08:00

Resolve post-merge issue

This commit is contained in:
smoogipoo 2020-03-09 13:29:17 +09:00
parent ab79f36c41
commit b61e56cda5

View File

@ -33,6 +33,6 @@ namespace osu.Game.Tournament.Screens.Gameplay.Components
currentTeamScore.BindTo(score);
}
private void scoreChanged(ValueChangedEvent<int?> score) => counter.CountStars = score.NewValue ?? 0;
private void scoreChanged(ValueChangedEvent<int?> score) => counter.Current = score.NewValue ?? 0;
}
}