Changeset 2731 for code/trunk/src/core
- Timestamp:
- Mar 2, 2009, 3:07:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/ConfigFileManager.cc
r2726 r2731 228 228 // Get default file if necessary and available 229 229 boost::filesystem::path filepath(Core::getConfigPath() / this->filename_); 230 COUT(0) << "config filepath: " << filepath.string() << std::endl;231 230 if (!boost::filesystem::exists(filepath)) 232 231 { 233 232 // Try to get default one from the media folder 234 233 boost::filesystem::path defaultFilepath(Core::getMediaPath() / "defaultConfig" / this->filename_); 235 COUT(0) << "default filepath: " << defaultFilepath.string() << std::endl;236 234 if (boost::filesystem::exists(defaultFilepath)) 237 235 {
Note: See TracChangeset
for help on using the changeset viewer.