From 6c11b3ce0131be3b14edf5ef93fa9cb2380ae45b Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Wed, 9 May 2018 19:26:44 +1000 Subject: dsp16: fix condition mask in disassembler (nw) (nw) remove more MCFG macros and make speaker config more explicit --- src/mame/drivers/esh.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/esh.cpp') diff --git a/src/mame/drivers/esh.cpp b/src/mame/drivers/esh.cpp index 12fda67a8b8..0d21cf41162 100644 --- a/src/mame/drivers/esh.cpp +++ b/src/mame/drivers/esh.cpp @@ -378,12 +378,13 @@ MACHINE_CONFIG_START(esh_state::esh) MCFG_GFXDECODE_ADD("gfxdecode", "palette", esh) /* sound hardware */ - MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") + SPEAKER(config, "lspeaker").front_left(); + SPEAKER(config, "rspeaker").front_right(); MCFG_DEVICE_MODIFY("laserdisc") MCFG_SOUND_ROUTE(0, "lspeaker", 1.0) MCFG_SOUND_ROUTE(1, "rspeaker", 1.0) - MCFG_SPEAKER_STANDARD_MONO("mono") + SPEAKER(config, "mono").front_center(); MCFG_DEVICE_ADD("beeper", BEEP, 2000) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MACHINE_CONFIG_END -- cgit v1.2.3