Apple II - fix controller config, remove Black Apple, White Apple and Reset keys since they are not currently hooked up
This commit is contained in:
parent
08da4147fb
commit
8412c91739
|
@ -44,7 +44,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
ControllerImages.Add("Lynx Controller", Properties.Resources.Lynx);
|
||||
ControllerImages.Add("PSX Gamepad Controller", Properties.Resources.PSX_Original_Controller);
|
||||
ControllerImages.Add("PSX DualShock Controller", Properties.Resources.psx_dualshock);
|
||||
ControllerImages.Add("Apple II Keyboard", Properties.Resources.AppleIIKeyboard);
|
||||
ControllerImages.Add("Apple IIe Keyboard", Properties.Resources.AppleIIKeyboard);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -105,7 +105,10 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|||
|
||||
private static readonly ControllerDefinition AppleIIController;
|
||||
|
||||
private static readonly List<string> RealButtons = new List<string>(Keyboard.GetKeyNames());
|
||||
private static readonly List<string> RealButtons = new List<string>(Keyboard.GetKeyNames()
|
||||
.Where(k => k != "White Apple") // Hack because these buttons aren't wired up yet
|
||||
.Where(k => k != "Black Apple")
|
||||
.Where(k => k != "Reset"));
|
||||
|
||||
private static readonly List<string> ExtraButtons = new List<string>
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue