diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs index 3208d3da80..77e4b848fd 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs @@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision if (InputPortSelection == InputPortMode.Right) { - byte retval = 0; + byte retval = 0xF; // 0x00; if (Controller.IsPressed("P1 Key 8")) retval = 0x01; @@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision if (InputPortSelection == InputPortMode.Right) { - byte retval = 0; + byte retval = 0xF; // 0x00; if (Controller.IsPressed("P2 Key8")) retval = 0x01;