From b679e3d53dba31c244b538f64e6e25233329d8b1 Mon Sep 17 00:00:00 2001 From: beirich Date: Sun, 18 Nov 2012 02:34:16 +0000 Subject: [PATCH] oops --- BizHawk.Emulation/Consoles/Coleco/Input.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Coleco/Input.cs b/BizHawk.Emulation/Consoles/Coleco/Input.cs index f596cd467d..f7ada8df09 100644 --- a/BizHawk.Emulation/Consoles/Coleco/Input.cs +++ b/BizHawk.Emulation/Consoles/Coleco/Input.cs @@ -36,7 +36,7 @@ if (Controller["P1 Right"]) retval &= 0xFD; if (Controller["P1 Down"]) retval &= 0xFB; if (Controller["P1 Left"]) retval &= 0xF7; - if (Controller["P1 L1"]) retval &= 0x3F; + if (Controller["P1 L"]) retval &= 0x3F; return retval; } @@ -61,7 +61,7 @@ if (Controller["P1 Key1"]) retval = 0x0D; if (Controller["P1 Key6"]) retval = 0x0E; - if (Controller["P1 R1"] == false) retval |= 0x40; + if (Controller["P1 R"] == false) retval |= 0x40; return retval; }