SPU2-X: Short term reverb quality hack (half the input volume), until we settle for smth.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4775 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-06-25 19:28:58 +00:00
parent aaf8f9067a
commit 6d9c794a63
1 changed files with 5 additions and 2 deletions

View File

@ -172,8 +172,11 @@ StereoOut32 V_Core::DoReverb( const StereoOut32& Input )
INPUT_SAMPLE.Right += (downbuf[(dbpos+x)&7].Right * downcoeffs[x]);
}
INPUT_SAMPLE.Left >>= 16;
INPUT_SAMPLE.Right >>= 16;
// short term quality hack
INPUT_SAMPLE.Left >>= 17;
INPUT_SAMPLE.Right >>= 17;
//INPUT_SAMPLE.Left >>= 16;
//INPUT_SAMPLE.Right >>= 16;
s32 input_L = INPUT_SAMPLE.Left * Revb.IN_COEF_L;
s32 input_R = INPUT_SAMPLE.Right * Revb.IN_COEF_R;