summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bzone.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-02-14 22:40:47 +1100
committer Vas Crabb <vas@vastheman.com>2018-02-14 23:46:17 +1100
commitf4df51e5223578e206574234c0b8d1af300c3324 (patch)
treefd5c680c45baee30304a31723132444fe7359dfb /src/mame/drivers/bzone.cpp
parent1bd974c2b4f1f8815065efd4f5fcc0443ae15d28 (diff)
(nw) screw you macros and the horse you rode in on
There's no voodoo involved in derived machine configurations and fragments any more. The macros were just obfuscating things at this point.
Diffstat (limited to 'src/mame/drivers/bzone.cpp')
-rw-r--r--src/mame/drivers/bzone.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/drivers/bzone.cpp b/src/mame/drivers/bzone.cpp
index b2d60a47911..0cb26c75efd 100644
--- a/src/mame/drivers/bzone.cpp
+++ b/src/mame/drivers/bzone.cpp
@@ -560,16 +560,18 @@ MACHINE_CONFIG_START(bzone_state::bzone_base)
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(bzone_state::bzone, bzone_base)
+MACHINE_CONFIG_START(bzone_state::bzone)
+ bzone_base(config);
/* sound hardware */
- MCFG_FRAGMENT_ADD(bzone_audio)
+ bzone_audio(config);
MACHINE_CONFIG_END
-MACHINE_CONFIG_DERIVED(bzone_state::redbaron, bzone_base)
+MACHINE_CONFIG_START(bzone_state::redbaron)
+ bzone_base(config);
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")