diff options
Diffstat (limited to 'src/mame/itech/itech32.cpp')
-rw-r--r-- | src/mame/itech/itech32.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/itech/itech32.cpp b/src/mame/itech/itech32.cpp index 7d63beab6e1..ceb01d738a1 100644 --- a/src/mame/itech/itech32.cpp +++ b/src/mame/itech/itech32.cpp @@ -1789,8 +1789,7 @@ void itech32_state::base_devices(machine_config &config) m_screen->set_palette(m_palette); m_screen->screen_vblank().set(FUNC(itech32_state::generate_int1)); - SPEAKER(config, "lspeaker").front_left(); - SPEAKER(config, "rspeaker").front_right(); + SPEAKER(config, "speaker", 2).front(); ES5506(config, m_ensoniq, SOUND_CLOCK); m_ensoniq->set_region0("ensoniq.0"); @@ -1798,8 +1797,8 @@ void itech32_state::base_devices(machine_config &config) m_ensoniq->set_region2("ensoniq.2"); m_ensoniq->set_region3("ensoniq.3"); m_ensoniq->set_channels(1); // channels - m_ensoniq->add_route(0, "rspeaker", 0.1); // swapped stereo - m_ensoniq->add_route(1, "lspeaker", 0.1); + m_ensoniq->add_route(0, "speaker", 0.1, 1); // swapped stereo + m_ensoniq->add_route(1, "speaker", 0.1, 0); } void itech32_state::via(machine_config &config) |