Fix match score display not doing an initial value update

This commit is contained in:
Dean Herbert 2021-08-11 14:43:01 +09:00
parent ee3b373e8a
commit 735c5085dd

View File

@ -104,7 +104,7 @@ namespace osu.Game.Screens.Play.HUD
base.LoadComplete();
Team1Score.BindValueChanged(_ => updateScores());
Team2Score.BindValueChanged(_ => updateScores());
Team2Score.BindValueChanged(_ => updateScores(), true);
}
private void updateScores()