Fix ButtonSchema.DisplayName regression

This commit is contained in:
YoshiRulz 2020-03-31 23:30:06 +10:00
parent 9e5e8c2547
commit e22c2ae115
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ namespace BizHawk.Client.EmuHawk
=> DisplayName = name; => DisplayName = name;
public ButtonSchema(int x, int y, int controller, string name) public ButtonSchema(int x, int y, int controller, string name)
: this(x, y, $"P{controller} {name}") {} : base(new Point(x, y), $"P{controller} {name}") {}
public static ButtonSchema Up(int x, int y, string? name = null) public static ButtonSchema Up(int x, int y, string? name = null)
=> new ButtonSchema(x, y, name ?? "Up") { Icon = Resources.BlueUp }; => new ButtonSchema(x, y, name ?? "Up") { Icon = Resources.BlueUp };