SPU2-X: Disable the frequency response filter until good config parameters are found. It currently overemphasizes the highs.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4220 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-01-16 03:33:07 +00:00
parent 6f1b8c23af
commit 20b4c25671
1 changed files with 2 additions and 1 deletions

View File

@ -859,7 +859,8 @@ __forceinline void Mix()
#endif
{
Out = Apply_Dealias_Filter ( Out );
Out = Apply_Frequency_Response_Filter ( Out );
// Frequency response filter needs to be tuned. Currently emphasizes the highs too much.
//Out = Apply_Frequency_Response_Filter ( Out );
}
// Final Clamp!