Fix all remaining cases of incorrect Bindable<string> defaults

This commit is contained in:
Dean Herbert
2021-10-08 13:55:20 +09:00
parent 2856aef4eb
commit 672664dce7
4 changed files with 5 additions and 5 deletions

View File

@ -14,8 +14,8 @@ namespace osu.Game.Tournament.Models
[Serializable]
public class TournamentRound
{
public readonly Bindable<string> Name = new Bindable<string>();
public readonly Bindable<string> Description = new Bindable<string>();
public readonly Bindable<string> Name = new Bindable<string>(string.Empty);
public readonly Bindable<string> Description = new Bindable<string>(string.Empty);
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };