summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mustache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mustache.c')
-rw-r--r--src/mame/video/mustache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/mustache.c b/src/mame/video/mustache.c
index 579243c565e..3a22690799a 100644
--- a/src/mame/video/mustache.c
+++ b/src/mame/video/mustache.c
@@ -139,10 +139,9 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
}
}
-SCREEN_UPDATE_IND16( mustache )
+UINT32 mustache_state::screen_update_mustache(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- mustache_state *state = screen.machine().driver_data<mustache_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;
}