Changeset 3345 for code/branches/resource/src/core/Core.cc
- Timestamp:
- Jul 24, 2009, 9:31:31 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/resource/src/core/Core.cc
r3343 r3345 231 231 232 232 Core::Core(const std::string& cmdLine) 233 : bGraphicsLoaded_(false) 233 : bDevRun_(false) 234 , bGraphicsLoaded_(false) 234 235 { 235 236 if (singletonRef_s != 0) … … 435 436 } 436 437 438 /*static*/ const boost::filesystem::path& Core::getRootPath() 439 { 440 return getInstance().configuration_->rootPath_; 441 } 442 /*static*/ std::string Core::getRootPathString() 443 { 444 return getInstance().configuration_->rootPath_.string() + '/'; 445 } 446 437 447 /** 438 448 @note … … 544 554 { 545 555 COUT(1) << "Running from the build tree." << std::endl; 546 Core:: isDevBuild_ = true;556 Core::bDevRun_ = true; 547 557 configuration_->mediaPath_ = ORXONOX_MEDIA_DEV_PATH; 548 558 configuration_->configPath_ = ORXONOX_CONFIG_DEV_PATH;
Note: See TracChangeset
for help on using the changeset viewer.