summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/exprraid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/exprraid.c')
-rw-r--r--src/mame/video/exprraid.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mame/video/exprraid.c b/src/mame/video/exprraid.c
index cb68c46fa38..0cc58f99c71 100644
--- a/src/mame/video/exprraid.c
+++ b/src/mame/video/exprraid.c
@@ -128,12 +128,11 @@ static void draw_sprites( running_machine &machine, bitmap_ind16 &bitmap, const
}
}
-SCREEN_UPDATE_IND16( exprraid )
+UINT32 exprraid_state::screen_update_exprraid(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- exprraid_state *state = screen.machine().driver_data<exprraid_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
draw_sprites(screen.machine(), bitmap, cliprect);
- state->m_bg_tilemap->draw(bitmap, cliprect, 1, 0);
- state->m_fg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 1, 0);
+ m_fg_tilemap->draw(bitmap, cliprect, 0, 0);
return 0;
}