Fix some translation issues and change a variable name(it was supposed to be iSFXVolume, but for some reason it never got changed over).

This commit is contained in:
The Dax 2013-08-09 08:04:13 -04:00
parent cfe5b18475
commit 8b6790187d
5 changed files with 15 additions and 15 deletions

View file

@ -134,7 +134,7 @@ void Config::Load(const char *iniFileName)
sound->Get("Enable", &bEnableSound, true);
sound->Get("EnableAtrac3plus", &bEnableAtrac3plus, true);
sound->Get("VolumeBGM", &iBGMVolume, 7);
sound->Get("VolumeSFX", &iSEVolume, 7);
sound->Get("VolumeSFX", &iSFXVolume, 7);
IniFile::Section *control = iniFile.GetOrCreateSection("Control");
control->Get("ShowStick", &bShowAnalogStick, false);
@ -260,7 +260,7 @@ void Config::Save()
sound->Set("Enable", bEnableSound);
sound->Set("EnableAtrac3plus", bEnableAtrac3plus);
sound->Set("VolumeBGM", iBGMVolume);
sound->Set("VolumeSFX", iSEVolume);
sound->Set("VolumeSFX", iSFXVolume);
IniFile::Section *control = iniFile.GetOrCreateSection("Control");
control->Set("ShowStick", bShowAnalogStick);