summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2020-09-13 16:31:59 -0400
committer arbee <rb6502@users.noreply.github.com>2020-09-13 16:31:59 -0400
commit2b3b79d9d91038b52413f29c7dd2ab1e2ad6c6f3 (patch)
tree10557ef83d7abe10f110dedad30d93eb9f786a46
parent7d026a8dd0dfc583ba3b9fa09f84eaa751d4101b (diff)
es5503: don't overdrive the output [R. Belmont]
-rw-r--r--src/devices/sound/es5503.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/es5503.cpp b/src/devices/sound/es5503.cpp
index 02c2b69a8fc..36fcaaf8af1 100644
--- a/src/devices/sound/es5503.cpp
+++ b/src/devices/sound/es5503.cpp
@@ -201,7 +201,7 @@ void es5503_device::sound_stream_update_legacy(sound_stream &stream, stream_samp
mixp = &mix[0];
for (i = 0; i < samples; i++)
for (int chan = 0; chan < output_channels; chan++)
- outputs[chan][i] = (*mixp++)>>1;
+ outputs[chan][i] = (*mixp++)>>3;
}