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.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
|
||||
|
||||
|
|
Loading…
Reference in New Issue