summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/es5503.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/es5503.cpp')
-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;
}