From 65accb7c94284c0cbea1e792c0748a91e2895c02 Mon Sep 17 00:00:00 2001 From: goyuken Date: Fri, 28 Feb 2014 04:16:54 +0000 Subject: [PATCH] woops --- .../Consoles/Nintendo/NES/NESControllers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs index 3329d95c01..d0782c489f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NESControllers.cs @@ -97,12 +97,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public byte ReadA(IController c) { - return (byte)(Left.Read(LeftU.UnMerge(c)) & 0x13); + return (byte)(Left.Read(LeftU.UnMerge(c)) & 0x19); } public byte ReadB(IController c) { - return (byte)(Right.Read(RightU.UnMerge(c)) & 0x13); + return (byte)(Right.Read(RightU.UnMerge(c)) & 0x19); } public ControllerDefinition GetDefinition()