summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/sega/saturn.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2025-04-14 11:31:53 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-27 22:23:20 +0200
commitd0f1c15a0f6df2dd51a754cb46e6175b7079c8f2 (patch)
treebe35c94340442af08c316a8679089ee68e119fac /src/mame/sega/saturn.cpp
parentec636faeba5c5841c5a4a35b7c9dc2f06a00f538 (diff)
New sound infrastructure.
Should be added soon: - mute - speaker/microphone resampling To be added a little later: - compression - reverb Needs to be added by someone else: - coreaudio - direct - portaudio - xaudio2 - js
Diffstat (limited to 'src/mame/sega/saturn.cpp')
-rw-r--r--src/mame/sega/saturn.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/sega/saturn.cpp b/src/mame/sega/saturn.cpp
index 2c32097969b..378b8053cca 100644
--- a/src/mame/sega/saturn.cpp
+++ b/src/mame/sega/saturn.cpp
@@ -864,15 +864,14 @@ void sat_console_state::saturn(machine_config &config)
MCFG_VIDEO_START_OVERRIDE(sat_console_state,stv_vdp2)
- SPEAKER(config, "lspeaker").front_left();
- SPEAKER(config, "rspeaker").front_right();
+ SPEAKER(config, "speaker", 2).front();
SCSP(config, m_scsp, 8467200*8/3); // 8.4672 MHz EXTCLK * 8 / 3 = 22.5792 MHz
m_scsp->set_addrmap(0, &sat_console_state::scsp_mem);
m_scsp->irq_cb().set(FUNC(saturn_state::scsp_irq));
m_scsp->main_irq_cb().set(m_scu, FUNC(sega_scu_device::sound_req_w));
- m_scsp->add_route(0, "lspeaker", 1.0);
- m_scsp->add_route(1, "rspeaker", 1.0);
+ m_scsp->add_route(0, "speaker", 1.0, 0);
+ m_scsp->add_route(1, "speaker", 1.0, 1);
stvcd_device &stvcd(STVCD(config, "stvcd", 0));
stvcd.add_route(0, "scsp", 1.0, 0);