From b201cbb3b63a457da7cd2fb962ff362d25bb2459 Mon Sep 17 00:00:00 2001 From: gigaherz Date: Sat, 28 May 2011 14:47:30 +0000 Subject: [PATCH] SPU2-X: Stop the ear-killing overflows by actually shifting the output as it was supposed to be shifted. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4682 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/spu2-x/src/Reverb.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/spu2-x/src/Reverb.cpp b/plugins/spu2-x/src/Reverb.cpp index d981d5c6ff..33b43d9005 100644 --- a/plugins/spu2-x/src/Reverb.cpp +++ b/plugins/spu2-x/src/Reverb.cpp @@ -226,7 +226,7 @@ StereoOut32 V_Core::DoReverb( const StereoOut32& Input ) ////////////////////////////////////////////////////////////// // Part 3: All-pass filters - // Purpose: Create actual reverberations + // Purpose: Create actual reverberation sound effect // First @@ -245,7 +245,7 @@ StereoOut32 V_Core::DoReverb( const StereoOut32& Input ) // Apply second gain and add ACC0 = (FB_A0 << 16) - MIX_A0 * Revb.FB_ALPHA; ACC1 = (FB_A1 << 16) - MIX_A1 * Revb.FB_ALPHA; - + ////////////////////////////////////////////////////////////// // Second @@ -267,8 +267,8 @@ StereoOut32 V_Core::DoReverb( const StereoOut32& Input ) ACC1 = (FB_B1 << 16) - MIX_B1 * Revb.FB_X; upbuf[ubpos] = clamp_mix( StereoOut32( - ACC0, // left - ACC1 // right + ACC0>>16, // left + ACC1>>16 // right ) ); }