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:
parent
cfe5b18475
commit
8b6790187d
5 changed files with 15 additions and 15 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue