From 2b3b79d9d91038b52413f29c7dd2ab1e2ad6c6f3 Mon Sep 17 00:00:00 2001 From: arbee Date: Sun, 13 Sep 2020 16:31:59 -0400 Subject: es5503: don't overdrive the output [R. Belmont] --- src/devices/sound/es5503.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3