Revert "Mapper 132 - change some Nintendulator logic to FCEUX logic, and makes Qi Wang - Chinese Chess (Ch) [p1][!] playable. Couldn't find any other mapper 132 games, so I don't know if this breaks any existing ones"

This reverts commit 2e49ae88d3.
This commit is contained in:
adelikat 2015-08-16 19:21:14 -04:00
parent 2e49ae88d3
commit 1a42b8d6fc
1 changed files with 1 additions and 4 deletions

View File

@ -44,11 +44,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
public override void WriteEXP(int addr, byte value)
{
//if ((addr & 0x103) == 0x102) // Nintendulator logic
if (addr >= 0x100 && addr <= 0x103) // FCEUX logic, Fixes Qi Wang - Chinese Chess (Ch) [p1][!]
{
if ((addr & 0x103) == 0x102)
reg = (byte)(value & 0x0f);
}
}
public override byte ReadEXP(int addr)