Merge pull request #654 from alyosha-tas/master

Fix typo
This commit is contained in:
alyosha-tas 2016-06-28 19:58:27 -04:00 committed by GitHub
commit 7fa2ada249
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
}
}
}
}