Changeset 9224 for code/branches/testing/src/libraries/core/Core.cc
- Timestamp:
- May 19, 2012, 3:03:02 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/testing/src/libraries/core/Core.cc
r8858 r9224 167 167 this->configFileManager_ = new ConfigFileManager(); 168 168 this->configFileManager_->setFilename(ConfigFileType::Settings, 169 CommandLineParser::getValue("settingsFile").get String());169 CommandLineParser::getValue("settingsFile").get<std::string>()); 170 170 171 171 // Required as well for the config values … … 184 184 #if !defined(ORXONOX_PLATFORM_APPLE) && !defined(ORXONOX_USE_WINMAIN) 185 185 // Create persistent IO console 186 if (CommandLineParser::getValue("noIOConsole").get Bool())186 if (CommandLineParser::getValue("noIOConsole").get<bool>()) 187 187 { 188 188 ModifyConfigValue(bStartIOConsole_, tset, false); … … 337 337 { 338 338 orxout(internal_info) << "loading graphics in Core" << endl; 339 339 340 340 // Any exception should trigger this, even in upgradeToGraphics (see its remarks) 341 341 Loki::ScopeGuard unloader = Loki::MakeObjGuard(*this, &Core::unloadGraphics);
Note: See TracChangeset
for help on using the changeset viewer.