Changeset 5992 for code/branches/console/src/libraries/core/Core.cc
- Timestamp:
- Oct 26, 2009, 10:55:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/libraries/core/Core.cc
r5973 r5992 126 126 127 127 SetConfigValue(language_, Language::getInstance().defaultLanguage_) 128 .description("The language of the in game text")128 .description("The language of the in game text") 129 129 .callback(this, &CoreConfiguration::languageChanged); 130 130 SetConfigValue(bInitializeRandomNumberGenerator_, true) … … 222 222 this->pathConfig_->setConfigurablePaths(); 223 223 224 // create a signal handler (only active for linux)224 // create a signal handler (only active for Linux) 225 225 // This call is placed as soon as possible, but after the directories are set 226 226 this->signalHandler_.reset(new SignalHandler()); 227 227 this->signalHandler_->doCatch(PathConfig::getExecutablePathString(), PathConfig::getLogPathString() + "orxonox_crash.log"); 228 228 229 // Set the correct log path. Before this call, /tmp (Unix) or %TEMP% was used229 // Set the correct log path. Before this call, /tmp (Unix) or %TEMP% (Windows) was used 230 230 OutputHandler::getOutStream().setLogPath(PathConfig::getLogPathString()); 231 231
Note: See TracChangeset
for help on using the changeset viewer.