From 0e3893c686f310021fd2235f8dab627a45f4156f Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Mon, 20 Nov 2017 12:12:53 -0600 Subject: [PATCH] Disable dynamic rate control by default. --- snes9x.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/snes9x.cpp b/snes9x.cpp index b6193fb5..46652d8d 100644 --- a/snes9x.cpp +++ b/snes9x.cpp @@ -422,6 +422,8 @@ void S9xLoadConfigFiles (char **argv, int argc) Settings.SoundPlaybackRate = conf.GetUInt("Sound::Rate", 32000); Settings.SoundInputRate = conf.GetUInt("Sound::InputRate", 32000); Settings.Mute = conf.GetBool("Sound::Mute", false); + Settings.DynamicRateControl = conf.GetBool("Sound::DynamicRateControl", false); + Settings.DynamicRateLimit = conf.GetUInt("Sound::DynamicRateLimit", 1000); // Display @@ -849,7 +851,7 @@ char * S9xParseArgs (char **argv, int argc) #endif // HACKING OR DEBUGGING OPTIONS - + #ifdef DEBUGGER if (!strcasecmp(argv[i], "-debug")) CPU.Flags |= DEBUG_MODE_FLAG;