diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/O2Schema.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/O2Schema.cs index 68726ce83f..feca23393f 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/O2Schema.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/O2Schema.cs @@ -12,19 +12,9 @@ namespace BizHawk.Client.EmuHawk { public IEnumerable GetPadSchemas(IEmulator core) { - var O2SyncSettings = ((O2Hawk)core).GetSyncSettings().Clone(); - // var port1 = O2SyncSettings.Port1; - // var port2 = O2SyncSettings.Port2; - - // if (port1 == "O2 Controller") - // { - yield return StandardController(1); - // } - - // if (port2 == "O2 Controller") - // { - yield return StandardController(2); - // } + yield return StandardController(1); + yield return StandardController(2); + yield return ConsoleButtons(); } private static PadSchema StandardController(int controller) @@ -42,5 +32,17 @@ namespace BizHawk.Client.EmuHawk } }; } + + private static PadSchema ConsoleButtons() + { + return new ConsoleSchema + { + Size = new Size(75, 50), + Buttons = new[] + { + new ButtonSchema(10, 15, "Power") + } + }; + } } }