diff options
author | 2020-09-13 16:31:59 -0400 | |
---|---|---|
committer | 2020-09-13 16:31:59 -0400 | |
commit | 2b3b79d9d91038b52413f29c7dd2ab1e2ad6c6f3 (patch) | |
tree | 10557ef83d7abe10f110dedad30d93eb9f786a46 /src/devices/sound | |
parent | 7d026a8dd0dfc583ba3b9fa09f84eaa751d4101b (diff) |
es5503: don't overdrive the output [R. Belmont]
Diffstat (limited to 'src/devices/sound')
-rw-r--r-- | src/devices/sound/es5503.cpp | 2 |
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; } |