summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/stadhero.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/stadhero.c')
-rw-r--r--src/mame/video/stadhero.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/stadhero.c b/src/mame/video/stadhero.c
index 9f5712bbc7c..ed7144d1f63 100644
--- a/src/mame/video/stadhero.c
+++ b/src/mame/video/stadhero.c
@@ -55,11 +55,10 @@ TILE_GET_INFO_MEMBER(stadhero_state::get_pf1_tile_info)
0);
}
-VIDEO_START( stadhero )
+void stadhero_state::video_start()
{
- stadhero_state *state = machine.driver_data<stadhero_state>();
- state->m_pf1_tilemap = &machine.tilemap().create(tilemap_get_info_delegate(FUNC(stadhero_state::get_pf1_tile_info),state),TILEMAP_SCAN_ROWS, 8, 8,32,32);
- state->m_pf1_tilemap->set_transparent_pen(0);
+ m_pf1_tilemap = &machine().tilemap().create(tilemap_get_info_delegate(FUNC(stadhero_state::get_pf1_tile_info),this),TILEMAP_SCAN_ROWS, 8, 8,32,32);
+ m_pf1_tilemap->set_transparent_pen(0);
}
/******************************************************************************/