summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/atari/vindictr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/atari/vindictr.cpp')
-rw-r--r--src/mame/atari/vindictr.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/atari/vindictr.cpp b/src/mame/atari/vindictr.cpp
index 54526e5dc99..1c72a5a7692 100644
--- a/src/mame/atari/vindictr.cpp
+++ b/src/mame/atari/vindictr.cpp
@@ -551,14 +551,13 @@ void vindictr_state::vindictr(machine_config &config)
m_screen->set_palette(m_palette);
// sound hardware
- SPEAKER(config, "lspeaker").front_left();
- SPEAKER(config, "rspeaker").front_right();
+ SPEAKER(config, "speaker", 2).front();
ATARI_JSA_I(config, m_jsa, 0);
m_jsa->main_int_cb().set_inputline(m_maincpu, M68K_IRQ_6);
m_jsa->test_read_cb().set_ioport("260010").bit(12);
- m_jsa->add_route(0, "lspeaker", 1.0);
- m_jsa->add_route(1, "rspeaker", 1.0);
+ m_jsa->add_route(0, "speaker", 1.0, 0);
+ m_jsa->add_route(1, "speaker", 1.0, 1);
config.device_remove("jsa:tms");
}