summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gatron.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gatron.c')
-rw-r--r--src/mame/video/gatron.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/gatron.c b/src/mame/video/gatron.c
index 84aad44b32d..a806698d76b 100644
--- a/src/mame/video/gatron.c
+++ b/src/mame/video/gatron.c
@@ -48,10 +48,9 @@ void gatron_state::video_start()
m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(gatron_state::get_bg_tile_info),this), TILEMAP_SCAN_COLS, 8, 16, 48, 16);
}
-SCREEN_UPDATE_IND16( gat )
+UINT32 gatron_state::screen_update_gat(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- gatron_state *state = screen.machine().driver_data<gatron_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
return 0;
}