summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/triplhnt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/triplhnt.c')
-rw-r--r--src/mame/video/triplhnt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/triplhnt.c b/src/mame/video/triplhnt.c
index f60ee819a46..5e92058af4b 100644
--- a/src/mame/video/triplhnt.c
+++ b/src/mame/video/triplhnt.c
@@ -16,12 +16,11 @@ TILE_GET_INFO_MEMBER(triplhnt_state::get_tile_info)
}
-VIDEO_START( triplhnt )
+void triplhnt_state::video_start()
{
- triplhnt_state *state = machine.driver_data<triplhnt_state>();
- machine.primary_screen->register_screen_bitmap(state->m_helper);
+ machine().primary_screen->register_screen_bitmap(m_helper);
- state->m_bg_tilemap = &machine.tilemap().create(tilemap_get_info_delegate(FUNC(triplhnt_state::get_tile_info),state), TILEMAP_SCAN_ROWS, 16, 16, 16, 16);
+ m_bg_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(triplhnt_state::get_tile_info),this), TILEMAP_SCAN_ROWS, 16, 16, 16, 16);
}