A better fix for 02991...

This commit is contained in:
Phil Bennett 2009-03-01 23:13:58 +00:00
parent a0bc726d0d
commit f1790fa57f

View File

@ -37,8 +37,9 @@ WRITE8_HANDLER( polyplay_characterram_w )
{ {
if (polyplay_characterram[offset] != data) if (polyplay_characterram[offset] != data)
{ {
gfx_element_mark_dirty(space->machine->gfx[1], (offset >> 3) & 0x7f);
polyplay_characterram[offset] = data; polyplay_characterram[offset] = data;
gfx_element_decode(space->machine->gfx[1], (offset >> 3) & 0x7f);
} }
} }