mirror of https://github.com/snes9xgit/snes9x.git
Don't do anything when write to $4200 is the same.
This commit is contained in:
parent
534971722c
commit
db1d524917
3
ppu.cpp
3
ppu.cpp
|
@ -1551,6 +1551,9 @@ void S9xSetCPU (uint8 Byte, uint16 Address)
|
||||||
S9xTraceFormattedMessage("Write to 0x4200. Byte is %2x was %2x\n", Byte, Memory.FillRAM[Address]);
|
S9xTraceFormattedMessage("Write to 0x4200. Byte is %2x was %2x\n", Byte, Memory.FillRAM[Address]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (Byte == Memory.FillRAM[0x4200])
|
||||||
|
break;
|
||||||
|
|
||||||
if (Byte & 0x20)
|
if (Byte & 0x20)
|
||||||
{
|
{
|
||||||
PPU.VTimerEnabled = TRUE;
|
PPU.VTimerEnabled = TRUE;
|
||||||
|
|
Loading…
Reference in New Issue