ym2608: Remove FM output boost. Matches previous core's volume better.

This commit is contained in:
Aaron Giles 2021-03-17 02:19:01 -07:00
parent ce4b91c11f
commit 0e0341b9b6

View File

@ -320,8 +320,6 @@ void ym2608_device::sound_stream_update(sound_stream &stream, std::vector<read_s
// update the OPN content; OPNA is 13-bit with no intermediate clipping
s32 lsum = 0, rsum = 0;
m_opn.output(lsum, rsum, 1, 32767, opnmask);
lsum <<= 1;
rsum <<= 1;
// mix in the ADPCM
m_adpcm_a.output(lsum, rsum, 0x3f);