Changeset 8366 for code/trunk/src/libraries/core/Core.cc
- Timestamp:
- Apr 30, 2011, 9:31:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/Core.cc
r8351 r8366 98 98 , lastLevelTimestamp_(0) 99 99 , ogreConfigTimestamp_(0) 100 , bDevMode_(false) 100 101 { 101 102 // Set the hard coded fixed paths … … 212 213 #ifdef ORXONOX_RELEASE 213 214 const unsigned int defaultLevelLogFile = 3; 214 SetConfigValue(bDevMode_, false)215 .description("Developer mode. If not set, hides some things from the user to not confuse him.");216 215 #else 217 216 const unsigned int defaultLevelLogFile = 4; 218 SetConfigValue(bDevMode_, true)219 .description("Developer mode. If not set, hides some things from the user to not confuse him.");220 217 #endif 221 218 SetConfigValueExternal(softDebugLevelLogFile_, "OutputHandler", "softDebugLevelLogFile", defaultLevelLogFile) … … 223 220 OutputHandler::getInstance().setSoftDebugLevel(OutputHandler::logFileOutputListenerName_s, this->softDebugLevelLogFile_); 224 221 222 SetConfigValue(bDevMode_, PathConfig::buildDirectoryRun()) 223 .description("Developer mode. If not set, hides some things from the user to not confuse him."); 225 224 SetConfigValue(language_, Language::getInstance().defaultLanguage_) 226 225 .description("The language of the in game text")
Note: See TracChangeset
for help on using the changeset viewer.