summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kickgoal.cpp
diff options
context:
space:
mode:
author MooglyGuy <therealmogminer@gmail.com>2018-05-16 09:37:54 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-05-16 11:58:08 +0200
commitc83e2a853d4e1643fcc85b68ada3c6f7f33adea4 (patch)
tree39b249e1a0a9b2056e9815d0a284fd483338362c /src/mame/drivers/kickgoal.cpp
parent2242ff00893a83a113150609bd525f098d632e8d (diff)
- Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side effect of making machine-config overrides of these much
uglier, but this is intended to discourage ongoing use, and will be gradually eliminated.
Diffstat (limited to 'src/mame/drivers/kickgoal.cpp')
-rw-r--r--src/mame/drivers/kickgoal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/kickgoal.cpp b/src/mame/drivers/kickgoal.cpp
index 41e816814d3..f6deb32dedb 100644
--- a/src/mame/drivers/kickgoal.cpp
+++ b/src/mame/drivers/kickgoal.cpp
@@ -661,7 +661,7 @@ MACHINE_CONFIG_START(kickgoal_state::kickgoal)
MCFG_PALETTE_ADD("palette", 1024)
MCFG_PALETTE_FORMAT(xxxxBBBBGGGGRRRR)
- MCFG_VIDEO_START_OVERRIDE(kickgoal_state,kickgoal)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_kickgoal, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -700,7 +700,7 @@ MACHINE_CONFIG_START(kickgoal_state::actionhw)
MCFG_PALETTE_ADD("palette", 1024)
MCFG_PALETTE_FORMAT(xxxxBBBBGGGGRRRR)
- MCFG_VIDEO_START_OVERRIDE(kickgoal_state,actionhw)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_actionhw, this));
/* sound hardware */
SPEAKER(config, "mono").front_center();