1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Fix compilation failure

This commit is contained in:
Dean Herbert 2020-03-09 01:21:37 +09:00
parent 979988235d
commit 61297847a7

View File

@ -141,7 +141,7 @@ 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;
}
private class TeamDisplay : DrawableTournamentTeam