a slight work around for N64 virtualpad, a button will be the default focused widget now instead of the numeric, which avoids the "ding" problem by default (if they focus onto a numeric it will happen of course, but at least it doesn't start in this state)
This commit is contained in:
parent
9469f5ac80
commit
546b3f3e19
|
@ -29,14 +29,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
DefaultSize = new Size(220, 316),
|
DefaultSize = new Size(220, 316),
|
||||||
Buttons = new[]
|
Buttons = new[]
|
||||||
{
|
{
|
||||||
new PadSchema.ButtonScema
|
|
||||||
{
|
|
||||||
Name = "P" + controller + " X Axis",
|
|
||||||
MaxValue = 127,
|
|
||||||
DisplayName = "",
|
|
||||||
Location = new Point(6, 14),
|
|
||||||
Type = PadSchema.PadInputType.AnalogStick
|
|
||||||
},
|
|
||||||
new PadSchema.ButtonScema
|
new PadSchema.ButtonScema
|
||||||
{
|
{
|
||||||
Name = "P" + controller + " DPad U",
|
Name = "P" + controller + " DPad U",
|
||||||
|
@ -138,6 +130,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Icon = Properties.Resources.YellowRight,
|
Icon = Properties.Resources.YellowRight,
|
||||||
Location = new Point(194, 189),
|
Location = new Point(194, 189),
|
||||||
Type = PadSchema.PadInputType.Boolean
|
Type = PadSchema.PadInputType.Boolean
|
||||||
|
},
|
||||||
|
new PadSchema.ButtonScema
|
||||||
|
{
|
||||||
|
Name = "P" + controller + " X Axis",
|
||||||
|
MaxValue = 127,
|
||||||
|
DisplayName = "",
|
||||||
|
Location = new Point(6, 14),
|
||||||
|
Type = PadSchema.PadInputType.AnalogStick
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue