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:
adelikat 2015-05-31 15:02:42 +00:00
parent 08da4147fb
commit 8412c91739
2 changed files with 5 additions and 2 deletions

View File

@ -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);
}

View File

@ -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>
{