summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/dai/dai.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/dai/dai.cpp')
-rw-r--r--src/mame/dai/dai.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/dai/dai.cpp b/src/mame/dai/dai.cpp
index 1a328b774ce..daad3cdb88c 100644
--- a/src/mame/dai/dai.cpp
+++ b/src/mame/dai/dai.cpp
@@ -215,9 +215,8 @@ void dai_state::dai(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
- SPEAKER(config, "lspeaker").front_left();
- SPEAKER(config, "rspeaker").front_right();
- DAI_SOUND(config, m_sound).add_route(0, "lspeaker", 0.50).add_route(1, "rspeaker", 0.50);
+ SPEAKER(config, "speaker", 2).front();
+ DAI_SOUND(config, m_sound).add_route(0, "speaker", 0.50, 0).add_route(1, "speaker", 0.50, 1);
/* cassette */
CASSETTE(config, m_cassette);