Changeset 11692 for code/trunk/src/libraries/core/Core.cc
- Timestamp:
- Jan 3, 2018, 1:43:20 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/Core.cc
r11691 r11692 281 281 orxout(internal_info) << "Loading modules:" << endl; 282 282 283 const std:: vector<std::string>& modulePaths = ApplicationPaths::getInstance().getModulePaths();284 for (const std:: string& modulePath : modulePaths)285 { 286 ModuleInstance* module = new ModuleInstance(modulePath );283 const std::map<std::string, std::string>& modulePaths = ApplicationPaths::getInstance().getModulePaths(); 284 for (const std::pair<std::string, std::string>& modulePath : modulePaths) 285 { 286 ModuleInstance* module = new ModuleInstance(modulePath.second); 287 287 this->loadModule(module); 288 288 this->modules_.push_back(module);
Note: See TracChangeset
for help on using the changeset viewer.