From f846dc517253d5d35a51405761ce542f907eda77 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 28 Jun 2016 19:56:44 -0400 Subject: [PATCH] Update NES.Core.cs --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs index 4e1163377b..497ec0eacc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs @@ -369,7 +369,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES return DB; //return apu.ReadReg(addr); case 0x4014: /*OAM DMA*/ break; - case 0x4015: return (byte)((byte)(apu.ReadReg(addr) & 0xCF) + (byte)(DB&0x20)); + case 0x4015: return (byte)((byte)(apu.ReadReg(addr) & 0xDF) + (byte)(DB&0x20)); case 0x4016: case 0x4017: return read_joyport(addr); @@ -670,4 +670,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } } -} \ No newline at end of file +}