Update NES.Core.cs

This commit is contained in:
alyosha-tas 2016-06-28 19:56:44 -04:00 committed by GitHub
parent 43b6d0f36e
commit f846dc5172
1 changed files with 2 additions and 2 deletions

View File

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