From 02b929e06e082c116f22aea9a502364ec6a6d3cf Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 2 Nov 2007 16:10:53 +0000 Subject: Patch #1816901: MT-32 emu: Low volume svn-id: r29378 --- sound/softsynth/mt32/partial.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound/softsynth') diff --git a/sound/softsynth/mt32/partial.cpp b/sound/softsynth/mt32/partial.cpp index 7d4b985b49..ff1222e688 100644 --- a/sound/softsynth/mt32/partial.cpp +++ b/sound/softsynth/mt32/partial.cpp @@ -639,8 +639,8 @@ bool Partial::produceOutput(Bit16s *partialBuf, long length) { partialBuf += donelen * 2; #endif while (length--) { - *partialBuf++ = (Bit16s)(((Bit32s)*mixedBuf * (Bit32s)leftvol) >> 16); - *partialBuf++ = (Bit16s)(((Bit32s)*mixedBuf * (Bit32s)rightvol) >> 16); + *partialBuf++ = (Bit16s)(((Bit32s)*mixedBuf * (Bit32s)leftvol) >> 15); + *partialBuf++ = (Bit16s)(((Bit32s)*mixedBuf * (Bit32s)rightvol) >> 15); mixedBuf++; } return true; -- cgit v1.2.3