From 0b47c01ef5377c1bf2ca8ecddfd9005cb80e1d31 Mon Sep 17 00:00:00 2001 From: Toad King Date: Mon, 6 Aug 2012 15:24:17 -0400 Subject: [PATCH] (Wii) change default values for audio rate control --- config.def.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.def.h b/config.def.h index 5d8caa6afe..e9f1b38f32 100644 --- a/config.def.h +++ b/config.def.h @@ -247,10 +247,18 @@ static const int out_latency = 64; static const bool audio_sync = true; // Experimental rate control +#ifdef GEKKO +static const bool rate_control = true; +#else static const bool rate_control = false; +#endif // Rate control delta. Defines how much rate_control is allowed to adjust input rate. +#ifdef GEKKO +static const float rate_control_delta = 0.006; +#else static const float rate_control_delta = 0.005; +#endif ////////////// // Misc