mirror of https://github.com/snes9xgit/snes9x.git
Disable dynamic rate control by default.
This commit is contained in:
parent
39f05664cd
commit
0e3893c686
|
@ -422,6 +422,8 @@ void S9xLoadConfigFiles (char **argv, int argc)
|
||||||
Settings.SoundPlaybackRate = conf.GetUInt("Sound::Rate", 32000);
|
Settings.SoundPlaybackRate = conf.GetUInt("Sound::Rate", 32000);
|
||||||
Settings.SoundInputRate = conf.GetUInt("Sound::InputRate", 32000);
|
Settings.SoundInputRate = conf.GetUInt("Sound::InputRate", 32000);
|
||||||
Settings.Mute = conf.GetBool("Sound::Mute", false);
|
Settings.Mute = conf.GetBool("Sound::Mute", false);
|
||||||
|
Settings.DynamicRateControl = conf.GetBool("Sound::DynamicRateControl", false);
|
||||||
|
Settings.DynamicRateLimit = conf.GetUInt("Sound::DynamicRateLimit", 1000);
|
||||||
|
|
||||||
// Display
|
// Display
|
||||||
|
|
||||||
|
@ -849,7 +851,7 @@ char * S9xParseArgs (char **argv, int argc)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// HACKING OR DEBUGGING OPTIONS
|
// HACKING OR DEBUGGING OPTIONS
|
||||||
|
|
||||||
#ifdef DEBUGGER
|
#ifdef DEBUGGER
|
||||||
if (!strcasecmp(argv[i], "-debug"))
|
if (!strcasecmp(argv[i], "-debug"))
|
||||||
CPU.Flags |= DEBUG_MODE_FLAG;
|
CPU.Flags |= DEBUG_MODE_FLAG;
|
||||||
|
|
Loading…
Reference in New Issue