mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-17 12:47:46 +00:00
Damn, forgot to commit these...
This commit is contained in:
parent
92c70af587
commit
ee7bf8276e
@ -172,6 +172,7 @@ void Config::Load(const char *iniFileName)
|
||||
debugConfig->Get("ConsoleWindowY", &iConsoleWindowY, -1);
|
||||
debugConfig->Get("FontWidth", &iFontWidth, 8);
|
||||
debugConfig->Get("FontHeight", &iFontHeight, 12);
|
||||
debugConfig->Get("DisplayStatusBar", &bDisplayStatusBar, true);
|
||||
|
||||
IniFile::Section *gleshacks = iniFile.GetOrCreateSection("GLESHacks");
|
||||
gleshacks->Get("PrescaleUV", &bPrescaleUV, false);
|
||||
@ -288,6 +289,7 @@ void Config::Save()
|
||||
debugConfig->Set("ConsoleWindowY", iConsoleWindowY);
|
||||
debugConfig->Set("FontWidth", iFontWidth);
|
||||
debugConfig->Set("FontHeight", iFontHeight);
|
||||
debugConfig->Set("DisplayStatusBar", bDisplayStatusBar);
|
||||
|
||||
KeyMap::SaveToIni(iniFile);
|
||||
|
||||
|
@ -149,6 +149,7 @@ public:
|
||||
int iConsoleWindowY;
|
||||
int iFontWidth;
|
||||
int iFontHeight;
|
||||
bool bDisplayStatusBar;
|
||||
|
||||
std::string currentDirectory;
|
||||
std::string externalDirectory;
|
||||
|
Loading…
x
Reference in New Issue
Block a user