mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add Disable G3D Log to ini , make default false
This commit is contained in:
parent
88cdbb9cc6
commit
3a6246eae7
1 changed files with 2 additions and 0 deletions
|
@ -66,6 +66,7 @@ void CConfig::Load(const char *iniFileName)
|
|||
graphics->Get("LinearFiltering", &bLinearFiltering, false);
|
||||
graphics->Get("SSAA", &SSAntiAlaising, 0);
|
||||
graphics->Get("VBO", &bUseVBO, true);
|
||||
graphics->Get("DisableG3DLog", &bDisableG3DLog, false);
|
||||
|
||||
IniFile::Section *sound = iniFile.GetOrCreateSection("Sound");
|
||||
sound->Get("Enable", &bEnableSound, true);
|
||||
|
@ -107,6 +108,7 @@ void CConfig::Save()
|
|||
graphics->Set("LinearFiltering", bLinearFiltering);
|
||||
graphics->Set("SSAA", SSAntiAlaising);
|
||||
graphics->Set("VBO", bUseVBO);
|
||||
graphics->Set("DisableG3DLog", bDisableG3DLog);
|
||||
|
||||
IniFile::Section *sound = iniFile.GetOrCreateSection("Sound");
|
||||
sound->Set("Enable", bEnableSound);
|
||||
|
|
Loading…
Add table
Reference in a new issue