From d603936d58f4f06ace23b02e33f5b801cab1ec62 Mon Sep 17 00:00:00 2001 From: "james.k.crook@gmail.com" Date: Tue, 11 Nov 2014 22:06:07 +0000 Subject: [PATCH] Noise reduction effect enabled in windows builds. --- src/Experimental.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Experimental.h b/src/Experimental.h index 1caeb2e5b..162fe2453 100644 --- a/src/Experimental.h +++ b/src/Experimental.h @@ -185,6 +185,10 @@ // Define to make the meters look like a row of LEDs //#define EXPERIMENTAL_METER_LED_STYLE + // Define for new noise reduction effect from Paul Licameli. -//#define EXPERIMENTAL_NOISE_REDUCTION +// Only windows until someone updates the build files. +#ifdef __WXMSW__ +#define EXPERIMENTAL_NOISE_REDUCTION +#endif #endif