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:
adelikat 2014-07-27 14:16:12 +00:00
parent 9469f5ac80
commit 546b3f3e19
1 changed files with 8 additions and 8 deletions

View File

@ -29,14 +29,6 @@ namespace BizHawk.Client.EmuHawk
DefaultSize = new Size(220, 316),
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
{
Name = "P" + controller + " DPad U",
@ -138,6 +130,14 @@ namespace BizHawk.Client.EmuHawk
Icon = Properties.Resources.YellowRight,
Location = new Point(194, 189),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonScema
{
Name = "P" + controller + " X Axis",
MaxValue = 127,
DisplayName = "",
Location = new Point(6, 14),
Type = PadSchema.PadInputType.AnalogStick
}
}
};