Update A7800Hawk schema with BW

This commit is contained in:
alyosha-tas 2017-07-29 19:22:11 -04:00 committed by GitHub
parent 3889955eab
commit d0c658b380
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,7 @@ using BizHawk.Emulation.Cores.Atari.A7800Hawk;
namespace BizHawk.Client.EmuHawk
{
[Schema("A7800Hawk")]
[Schema("A7800")]
public class A7800HawkSchema : IVirtualPadSchema
{
private string UnpluggedControllerName => typeof(UnpluggedController).DisplayName();
@ -250,6 +250,13 @@ namespace BizHawk.Client.EmuHawk
DisplayName = "Pause",
Location = new Point(158, 15),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonSchema
{
Name = "BW",
DisplayName = "BW",
Location = new Point(158, 15),
Type = PadSchema.PadInputType.Boolean
}
}
};