summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/eprom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/eprom.cpp')
-rw-r--r--src/mame/drivers/eprom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/eprom.cpp b/src/mame/drivers/eprom.cpp
index 8f7761fa499..90221777d4c 100644
--- a/src/mame/drivers/eprom.cpp
+++ b/src/mame/drivers/eprom.cpp
@@ -420,7 +420,7 @@ MACHINE_CONFIG_START(eprom_state::eprom)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, eprom_state, video_int_write_line))
- set_video_start_cb(config, driver_callback_delegate(&video_start_eprom, this));
+ MCFG_VIDEO_START_OVERRIDE(eprom_state,eprom)
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -463,7 +463,7 @@ MACHINE_CONFIG_START(eprom_state::klaxp)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, eprom_state, video_int_write_line))
- set_video_start_cb(config, driver_callback_delegate(&video_start_eprom, this));
+ MCFG_VIDEO_START_OVERRIDE(eprom_state,eprom)
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -511,7 +511,7 @@ MACHINE_CONFIG_START(eprom_state::guts)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, eprom_state, video_int_write_line))
- set_video_start_cb(config, driver_callback_delegate(&video_start_guts, this));
+ MCFG_VIDEO_START_OVERRIDE(eprom_state,guts)
/* sound hardware */
SPEAKER(config, "mono").front_center();