summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/88games.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-11-18 08:55:46 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2018-11-18 08:55:46 +0100
commit8d029da480431d6042e6f49f7088f6696d05dd4d (patch)
tree85a46f6e2b2bd9f378dc734d21a8110858b9fff2 /src/mame/drivers/88games.cpp
parentd8420e2c8f3babc90c0be99b8638b9e518317a55 (diff)
ym2151: removed MCFG macros (nw)
Diffstat (limited to 'src/mame/drivers/88games.cpp')
-rw-r--r--src/mame/drivers/88games.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mame/drivers/88games.cpp b/src/mame/drivers/88games.cpp
index 28ee66b131d..9524301dccd 100644
--- a/src/mame/drivers/88games.cpp
+++ b/src/mame/drivers/88games.cpp
@@ -348,9 +348,7 @@ MACHINE_CONFIG_START(_88games_state::_88games)
GENERIC_LATCH_8(config, "soundlatch");
- MCFG_DEVICE_ADD("ymsnd", YM2151, 3579545)
- MCFG_SOUND_ROUTE(0, "mono", 0.75)
- MCFG_SOUND_ROUTE(1, "mono", 0.75)
+ YM2151(config, "ymsnd", 3579545).add_route(0, "mono", 0.75).add_route(1, "mono", 0.75);
MCFG_DEVICE_ADD("upd1", UPD7759)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)