TQROM: writes to chrrom are ignored, instead of attempting to write to incorrect chrram addresses

This commit is contained in:
goyuken 2012-10-12 01:58:36 +00:00
parent 900568f5ed
commit c1b9293c09
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ namespace BizHawk.Emulation.Consoles.Nintendo
addr &= 0x1FFF;
VRAM[addr] = value;
}
else base.WritePPU(addr, value);
//else
// if this address is mapped to chrrom and not chrram, the write just does nothing
//base.WritePPU(addr, value);
}
else
base.WritePPU(addr, value);