diff options
Diffstat (limited to 'src/mame/sega/megacd.cpp')
-rw-r--r-- | src/mame/sega/megacd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/sega/megacd.cpp b/src/mame/sega/megacd.cpp index 8f288cdcdf8..a35d2814a26 100644 --- a/src/mame/sega/megacd.cpp +++ b/src/mame/sega/megacd.cpp @@ -296,8 +296,8 @@ void sega_segacd_device::device_add_mconfig(machine_config &config) config.set_default_layout(layout_megacd); RF5C164(config, m_rfsnd, SEGACD_CLOCK); // or Sega 315-5476A - m_rfsnd->add_route( 0, ":lspeaker", 0.50 ); - m_rfsnd->add_route( 1, ":rspeaker", 0.50 ); + m_rfsnd->add_route( 0, ":speaker", 0.50, 0 ); + m_rfsnd->add_route( 1, ":speaker", 0.50, 1 ); m_rfsnd->set_addrmap(0, &sega_segacd_device::segacd_pcm_map); NVRAM(config, "backupram", nvram_device::DEFAULT_ALL_0); |