Changeset 8272 for code/branches
- Timestamp:
- Apr 20, 2011, 12:29:08 AM (14 years ago)
- Location:
- code/branches/kicklib/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/libraries/core/GraphicsManager.cc
r8271 r8272 260 260 SubString plugins(ogrePlugins_, ",", " ", false, '\\', false, '"', false, '{', '}', false, '\0'); 261 261 for (unsigned int i = 0; i < plugins.size(); ++i) 262 ogreRoot_->loadPlugin(plugin s[i]);262 ogreRoot_->loadPlugin(pluginPath + '/' + plugins[i]); 263 263 } 264 264 -
code/branches/kicklib/src/libraries/core/PathConfig.cc
r8271 r8272 288 288 // We've found a helper file 289 289 const std::string& library = filename.substr(0, filename.size() - moduleextensionlength); 290 modulePaths.push_back( (modulePath_ / library).BF_NATIVE_STRING());290 modulePaths.push_back(getModulePathString() + library); 291 291 } 292 292 }
Note: See TracChangeset
for help on using the changeset viewer.