Fix ButtonSchema.DisplayName regression
This commit is contained in:
parent
9e5e8c2547
commit
e22c2ae115
|
@ -34,7 +34,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
=> DisplayName = 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)
|
||||
=> new ButtonSchema(x, y, name ?? "Up") { Icon = Resources.BlueUp };
|
||||
|
|
Loading…
Reference in New Issue