From d469cc04bcace0f601802301caeddc5b473b75f2 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sun, 7 Jan 2018 22:20:14 +0100 Subject: API Change: Machine configs are now a method of the owner class, and the prototype is simplified [O. Galibert] Beware, the device context does not follow in MCFG_FRAGMENT_ADD anymore due to the prototype change. So creating a device then configuring through a fragment doesn't work as-is. The simplest solution is just to add a MCFG_DEVICE_MODIFY at the start of the fragment with the correct tag. --- 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 14c629e8a34..cc7a28247da 100644 --- a/src/mame/drivers/galaxia.cpp +++ b/src/mame/drivers/galaxia.cpp @@ -284,7 +284,7 @@ static GFXDECODE_START( astrowar ) GFXDECODE_END -static MACHINE_CONFIG_START( galaxia ) +MACHINE_CONFIG_START(galaxia_state::galaxia) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", S2650, XTAL_14_31818MHz/8) @@ -328,7 +328,7 @@ static MACHINE_CONFIG_START( galaxia ) MACHINE_CONFIG_END -static MACHINE_CONFIG_START( astrowar ) +MACHINE_CONFIG_START(galaxia_state::astrowar) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", S2650, XTAL_14_31818MHz/8) -- cgit v1.2.3