From c83e2a853d4e1643fcc85b68ada3c6f7f33adea4 Mon Sep 17 00:00:00 2001 From: MooglyGuy Date: Wed, 16 May 2018 09:37:54 +0200 Subject: - 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. --- src/mame/drivers/galaxia.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/galaxia.cpp') diff --git a/src/mame/drivers/galaxia.cpp b/src/mame/drivers/galaxia.cpp index 9ac5db7e13a..4939fde0380 100644 --- a/src/mame/drivers/galaxia.cpp +++ b/src/mame/drivers/galaxia.cpp @@ -316,7 +316,7 @@ MACHINE_CONFIG_START(galaxia_state::galaxia) MCFG_PALETTE_ADD("palette", 0x18+2) MCFG_PALETTE_INIT_OWNER(galaxia_state,galaxia) - MCFG_VIDEO_START_OVERRIDE(galaxia_state,galaxia) + set_video_start_cb(config, driver_callback_delegate(&video_start_galaxia, this)); MCFG_DEVICE_ADD("s2636_0", S2636, 0) MCFG_S2636_OFFSETS(-13, -26) @@ -360,7 +360,7 @@ MACHINE_CONFIG_START(galaxia_state::astrowar) MCFG_PALETTE_ADD("palette", 0x18+2) MCFG_PALETTE_INIT_OWNER(galaxia_state,astrowar) - MCFG_VIDEO_START_OVERRIDE(galaxia_state,astrowar) + set_video_start_cb(config, driver_callback_delegate(&video_start_astrowar, this)); MCFG_DEVICE_ADD("s2636_0", S2636, 0) MCFG_S2636_OFFSETS(-13, -8) -- cgit v1.2.3