02991 polyplay: Broken graphics when playing [Phil Bennett]

This commit is contained in:
Phil Bennett 2009-02-28 20:10:26 +00:00
parent 30584f0017
commit 16db3dbc4d

View File

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