Update A7800 Hawk Schema

This commit is contained in:
alyosha-tas 2017-07-21 19:28:44 -04:00 committed by GitHub
parent fcfe2b23c9
commit 7a0295e48f
1 changed files with 15 additions and 4 deletions

View File

@ -12,12 +12,13 @@ namespace BizHawk.Client.EmuHawk
{
private string UnpluggedControllerName => typeof(UnpluggedController).DisplayName();
private string StandardControllerName => typeof(StandardController).DisplayName();
private string ProLineControllerName => typeof(ProLineController).DisplayName();
public IEnumerable<PadSchema> GetPadSchemas(IEmulator core)
{
var intvSyncSettings = ((A7800Hawk)core).GetSyncSettings().Clone();
var port1 = intvSyncSettings.Port1;
var port2 = intvSyncSettings.Port2;
var A78SyncSettings = ((A7800Hawk)core).GetSyncSettings().Clone();
var port1 = A78SyncSettings.Port1;
var port2 = A78SyncSettings.Port2;
if (port1 == StandardControllerName)
{
@ -28,7 +29,17 @@ namespace BizHawk.Client.EmuHawk
{
yield return JoystickController(2);
}
if (port1 == ProLineControllerName)
{
yield return ProLineController(1);
}
if (port2 == ProLineControllerName)
{
yield return ProLineController(2);
}
}
private static PadSchema ProLineController(int controller)