Disable dynamic rate control by default.

This commit is contained in:
Brandon Wright 2017-11-20 12:12:53 -06:00
parent 39f05664cd
commit 0e3893c686
1 changed files with 3 additions and 1 deletions

View File

@ -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;