mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
aaf8f9067a
commit
6d9c794a63
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue