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