Started implementing ability to load custom config files (currently unstable).

Feel free to help out with this if you like :)
This commit is contained in:
BenDol
2014-04-01 05:43:31 +13:00
parent f4de000646
commit 61059e66ec
13 changed files with 320 additions and 147 deletions

View File

@@ -126,7 +126,10 @@ void Application::terminate()
#endif
// save configurations
g_configs.save();
ConfigPtr settings = g_configs.getSettings();
if(settings) {
settings->save();
}
// release resources
g_resources.terminate();