summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hitme.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hitme.cpp')
-rw-r--r--src/mame/drivers/hitme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hitme.cpp b/src/mame/drivers/hitme.cpp
index b16be8ff95b..7acef4835e5 100644
--- a/src/mame/drivers/hitme.cpp
+++ b/src/mame/drivers/hitme.cpp
@@ -63,7 +63,7 @@ void hitme_state::video_start()
}
-void hitme_state::video_start_barricad()
+VIDEO_START_MEMBER(hitme_state,barricad)
{
m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(hitme_state::get_hitme_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 24);
}
@@ -360,7 +360,7 @@ MACHINE_CONFIG_START(hitme_state::barricad)
MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_barricad)
- set_video_start_cb(config, driver_callback_delegate(&video_start_barricad, this));
+ MCFG_VIDEO_START_OVERRIDE(hitme_state,barricad)
MACHINE_CONFIG_END