summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/espial.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/espial.c')
-rw-r--r--src/mame/video/espial.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/espial.c b/src/mame/video/espial.c
index 4906e6ab9cf..dae88c368a2 100644
--- a/src/mame/video/espial.c
+++ b/src/mame/video/espial.c
@@ -225,11 +225,10 @@ static void draw_sprites( running_machine &machine, bitmap_ind16 &bitmap, const
}
-SCREEN_UPDATE_IND16( espial )
+UINT32 espial_state::screen_update_espial(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- espial_state *state = screen.machine().driver_data<espial_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
draw_sprites(screen.machine(), bitmap, cliprect);
return 0;
}