From 1363203af42ac247a16b9f133afd1901e23ab372 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 28 Dec 2016 15:37:27 -0500 Subject: [PATCH] Update Input.cs No buttons pressed should return 0xF not 0. Fixes #754 --- BizHawk.Emulation.Cores/Consoles/Coleco/Input.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;