mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
es5503: don't overdrive the output [R. Belmont]
This commit is contained in:
parent
7d026a8dd0
commit
2b3b79d9d9
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user