01776: pzloop2, pzloop2j: In-game message "write to CPS-A register 24 contact MAMEDEV" at startup.

This commit is contained in:
Nicola Salmoria 2008-05-24 10:46:07 +00:00
parent 896776258a
commit 7f17672586

View File

@ -1483,6 +1483,10 @@ WRITE16_HANDLER( cps1_cps_a_w )
if (offset == CPS1_PALETTE_BASE)
cps1_build_palette(machine, cps1_base(CPS1_PALETTE_BASE,cps1_palette_align));
// pzloop2 write to register 24 on startup. This is probably just a bug.
if (offset == 0x24/2 && cps_version == 2)
return;
if (offset > CPS1_VIDEOCONTROL)
popmessage("write to CPS-A register %02x contact MAMEDEV", offset*2);
}