Update Input.cs

No buttons pressed should return 0xF not 0.

Fixes #754
This commit is contained in:
alyosha-tas 2016-12-28 15:37:27 -05:00 committed by GitHub
parent bc92e9cc2b
commit 1363203af4
1 changed files with 2 additions and 2 deletions

View File

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