- completed screen UI work. F11 will save current menu UI config to ini file, F5 will cause a reload of INI realtime

This commit is contained in:
Mark Vejvoda
2010-09-09 21:07:39 +00:00
parent 7f9c9cde28
commit 6a24ca3ad0
30 changed files with 350 additions and 58 deletions

View File

@@ -357,6 +357,10 @@ void MainWindow::eventKeyDown(char key){
bool showDebugUI = renderer.getShowDebugUI();
renderer.setShowDebugUI(!showDebugUI);
}
else if(key == configKeys.getCharKey("ReloadINI")) {
Config &config = Config::getInstance();
config.reload();
}
}
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);