summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/psikyo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/psikyo.cpp')
-rw-r--r--src/mame/drivers/psikyo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/psikyo.cpp b/src/mame/drivers/psikyo.cpp
index 389b268074e..eec86586adb 100644
--- a/src/mame/drivers/psikyo.cpp
+++ b/src/mame/drivers/psikyo.cpp
@@ -1048,7 +1048,7 @@ MACHINE_CONFIG_START(psikyo_state::sngkace)
MCFG_PALETTE_ADD("palette", 0x1000)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_VIDEO_START_OVERRIDE(psikyo_state,sngkace)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_sngkace, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -1094,7 +1094,7 @@ MACHINE_CONFIG_START(psikyo_state::gunbird)
MCFG_PALETTE_ADD("palette", 0x1000)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_VIDEO_START_OVERRIDE(psikyo_state,psikyo)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_psikyo, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -1135,7 +1135,7 @@ MACHINE_CONFIG_START(psikyo_state::s1945bl) /* Bootleg hardware based on the unp
MCFG_PALETTE_ADD("palette", 0x1000)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_VIDEO_START_OVERRIDE(psikyo_state,psikyo)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_psikyo, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -1180,7 +1180,7 @@ MACHINE_CONFIG_START(psikyo_state::s1945)
MCFG_PALETTE_ADD("palette", 0x1000)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_VIDEO_START_OVERRIDE(psikyo_state,psikyo)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_psikyo, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();