summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/esqasr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/esqasr.cpp')
-rw-r--r--src/mame/drivers/esqasr.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/esqasr.cpp b/src/mame/drivers/esqasr.cpp
index ed7c24bd44a..2908a22a259 100644
--- a/src/mame/drivers/esqasr.cpp
+++ b/src/mame/drivers/esqasr.cpp
@@ -122,7 +122,8 @@ MACHINE_CONFIG_START(esqasr_state::asr)
MCFG_ESQ2X40_SQ1_ADD("sq1vfd")
- MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
+ SPEAKER(config, "lspeaker").front_left();
+ SPEAKER(config, "rspeaker").front_right();
MCFG_DEVICE_ADD("pump", ESQ_5505_5510_PUMP, XTAL(16'000'000) / (16 * 32))
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
@@ -155,7 +156,8 @@ MACHINE_CONFIG_START(esqasr_state::asrx)
MCFG_ESQ2X40_SQ1_ADD("sq1vfd")
- MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
+ SPEAKER(config, "lspeaker").front_left();
+ SPEAKER(config, "rspeaker").front_right();
MCFG_DEVICE_ADD("pump", ESQ_5505_5510_PUMP, XTAL(16'000'000) / (16 * 32)) // Actually ES5511
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)