summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ssv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ssv.cpp')
-rw-r--r--src/mame/drivers/ssv.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/drivers/ssv.cpp b/src/mame/drivers/ssv.cpp
index 59dbabfcedb..68209d5ccea 100644
--- a/src/mame/drivers/ssv.cpp
+++ b/src/mame/drivers/ssv.cpp
@@ -2624,7 +2624,7 @@ MACHINE_CONFIG_START(ssv_state::gdfs)
MCFG_ST0020_SPRITES_PALETTE("palette")
MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_gdfs)
- MCFG_VIDEO_START_OVERRIDE(ssv_state,gdfs)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_gdfs, this));
MACHINE_CONFIG_END
@@ -2838,8 +2838,13 @@ MACHINE_CONFIG_START(ssv_state::eaglshot)
MCFG_SCREEN_VISIBLE_AREA(0, (0xca - 0x2a)*2-1, 0, (0xf6 - 0x16)-1)
MCFG_SCREEN_UPDATE_DRIVER(ssv_state, screen_update_eaglshot)
+<<<<<<< HEAD
MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_eaglshot)
MCFG_VIDEO_START_OVERRIDE(ssv_state,eaglshot)
+=======
+ MCFG_GFXDECODE_MODIFY("gfxdecode", eaglshot)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_eaglshot, this));
+>>>>>>> - Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side effect of making machine-config overrides of these much
MACHINE_CONFIG_END