diff options
Diffstat (limited to 'src/mame/drivers/aristmk4.c')
-rw-r--r-- | src/mame/drivers/aristmk4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/aristmk4.c b/src/mame/drivers/aristmk4.c index 1beb9caec9e..c9c4f849f3d 100644 --- a/src/mame/drivers/aristmk4.c +++ b/src/mame/drivers/aristmk4.c @@ -368,7 +368,7 @@ void aristmk4_state::video_start() int tile; for (tile = 0; tile < m_gfxdecode->gfx(0)->elements(); tile++) { - m_gfxdecode->gfx(0)->decode(tile); + m_gfxdecode->gfx(0)->get_data(tile); } } @@ -424,7 +424,7 @@ UINT32 aristmk4_state::screen_update_aristmk4(screen_device &screen, bitmap_ind1 tile = (m_mkiv_vram[count+1]|m_mkiv_vram[count]<<8) & 0x3ff; bgtile = (m_mkiv_vram[count+1]|m_mkiv_vram[count]<<8) & 0xff; // first 256 tiles uBackgroundColour(); // read sw7 - gfx->decode(bgtile); // force the machine to update only the first 256 tiles. + gfx->mark_dirty(bgtile); // force the machine to update only the first 256 tiles. // as we only update the background, not the entire display. flipx = ((m_mkiv_vram[count]) & 0x04); flipy = ((m_mkiv_vram[count]) & 0x08); |