ButtonSchema - lock down Location setting
This commit is contained in:
parent
1c9260f7cf
commit
90a03f3f6a
|
@ -27,7 +27,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
public string Name { get; set; }
|
||||
public string DisplayName { get; set; }
|
||||
public PadInputType Type { get; protected set; } = PadInputType.Boolean;
|
||||
public Point Location { get; set; }
|
||||
public Point Location { get; protected set; }
|
||||
public Bitmap Icon { get; set; }
|
||||
public Size TargetSize { get; set; } // Specifically for TargetedPair, specifies the screen size
|
||||
public string[] SecondaryNames { get; set; } // Any other buttons necessary to operate (such as the Y axis)
|
||||
|
|
|
@ -669,8 +669,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
new ButtonSchema(311, 84)
|
||||
{
|
||||
Name = $"P{controller} Colon",
|
||||
DisplayName = ":",
|
||||
Location = new Point(311, 84)
|
||||
DisplayName = ":"
|
||||
},
|
||||
new ButtonSchema(332, 84)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue