Damn, forgot to commit these...

This commit is contained in:
Kingcom 2013-07-30 17:06:37 +02:00
parent 92c70af587
commit ee7bf8276e
2 changed files with 3 additions and 0 deletions

View File

@ -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);

View File

@ -149,6 +149,7 @@ public:
int iConsoleWindowY;
int iFontWidth;
int iFontHeight;
bool bDisplayStatusBar;
std::string currentDirectory;
std::string externalDirectory;