From 20b4c25671596dc70a83ac83ec529784dc95ee40 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sun, 16 Jan 2011 03:33:07 +0000 Subject: [PATCH] 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 --- plugins/spu2-x/src/Mixer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/spu2-x/src/Mixer.cpp b/plugins/spu2-x/src/Mixer.cpp index 1bd82bf480..1406e6d97d 100644 --- a/plugins/spu2-x/src/Mixer.cpp +++ b/plugins/spu2-x/src/Mixer.cpp @@ -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!