mirror of
https://github.com/holub/mame
synced 2025-05-23 22:20:01 +03:00
A better fix for 02991...
This commit is contained in:
parent
a0bc726d0d
commit
f1790fa57f
@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user