summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2021-08-24 08:37:42 -0700
committer Aaron Giles <aaron@aarongiles.com>2021-08-24 08:37:42 -0700
commit7caa0a65a6ecd42bfbfed5fa5e53dd5644739a00 (patch)
tree14950582cf410a27ad9adc9d5e4d51c0e2524485
parent3754297a3fd8f946cd7681b7f1a8becc112b42b7 (diff)
mario: Reduce volume so we don't clip constantly just when running around.
-rw-r--r--src/mame/audio/mario.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/mario.cpp b/src/mame/audio/mario.cpp
index a97abfdcf79..b4feeecbc32 100644
--- a/src/mame/audio/mario.cpp
+++ b/src/mame/audio/mario.cpp
@@ -663,7 +663,7 @@ void mario_state::mario_audio(machine_config &config)
#else
NETLIST_SOUND(config, "snd_nl", 48000)
.set_source(netlist_mario)
- .add_route(ALL_OUTPUTS, "mono", 1.0);
+ .add_route(ALL_OUTPUTS, "mono", 0.5);
NETLIST_LOGIC_INPUT(config, m_audio_snd0, "SOUND0.IN", 0);
NETLIST_LOGIC_INPUT(config, m_audio_snd1, "SOUND1.IN", 0);