Changeset 10247 in orxonox.OLD for branches/mount_points/src/world_entities/mount_point.cc
- Timestamp:
- Jan 17, 2007, 10:54:18 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/world_entities/mount_point.cc
r10243 r10247 93 93 std::string name = element->Value(); 94 94 95 PRINTF(5)("checking %s against local %s\n", name.c_str(), this->_name.c_str()); 95 96 // check if we got the right mount point 96 if( name == this->_name)97 if( this->_name.find(name, 0) != std::string::npos) 97 98 { 99 PRINTF(5)("found mount point %s\n", this->_name.c_str()); 98 100 // load it 99 101 this->loadParam(element);
Note: See TracChangeset
for help on using the changeset viewer.