Merge items to new UI
This commit is contained in:
parent
cfd8ef494a
commit
39c6c7f634
8 changed files with 62 additions and 56 deletions
|
@ -129,7 +129,7 @@ void Config::Load(const char *iniFileName)
|
|||
graphics->Get("TexScalingLevel", &iTexScalingLevel, 1);
|
||||
graphics->Get("TexScalingType", &iTexScalingType, 0);
|
||||
graphics->Get("TexDeposterize", &bTexDeposterize, false);
|
||||
graphics->Get("VSyncInterval", &iVSyncInterval, 0);
|
||||
graphics->Get("VSyncInterval", &bVSync, false);
|
||||
|
||||
IniFile::Section *sound = iniFile.GetOrCreateSection("Sound");
|
||||
sound->Get("Enable", &bEnableSound, true);
|
||||
|
@ -250,7 +250,7 @@ void Config::Save()
|
|||
graphics->Set("TexScalingLevel", iTexScalingLevel);
|
||||
graphics->Set("TexScalingType", iTexScalingType);
|
||||
graphics->Set("TexDeposterize", bTexDeposterize);
|
||||
graphics->Set("VSyncInterval", iVSyncInterval);
|
||||
graphics->Set("VSyncInterval", bVSync);
|
||||
|
||||
IniFile::Section *sound = iniFile.GetOrCreateSection("Sound");
|
||||
sound->Set("Enable", bEnableSound);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue