Virtualpad - Saturn - add previous and next buttons to console buttons, fixes #1703

This commit is contained in:
adelikat 2020-01-25 14:32:33 -06:00
parent 415dd5375b
commit 3b5d0ab231
1 changed files with 15 additions and 1 deletions

View File

@ -608,7 +608,7 @@ namespace BizHawk.Client.EmuHawk
{
DisplayName = "Console",
IsConsole = true,
DefaultSize = new Size(150, 50),
DefaultSize = new Size(250, 50),
Buttons = new[]
{
new PadSchema.ButtonSchema
@ -624,6 +624,20 @@ namespace BizHawk.Client.EmuHawk
DisplayName = "Power",
Location = new Point(58, 15),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Previous Disk",
DisplayName = "Prev Disc",
Location = new Point(108, 15),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "Next Disk",
DisplayName = "Next Disc",
Location = new Point(175, 15),
Type = PadSchema.PadInputType.Boolean
}
}
};