Changeset 10247 in orxonox.OLD
- Timestamp:
- Jan 17, 2007, 10:54:18 AM (18 years ago)
- Location:
- branches/mount_points/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/oif/object_information_file.cc
r10246 r10247 147 147 void ObjectInformationFile::load(const std::string& fileName) 148 148 { 149 PRINTF(0)("loading\n");150 149 this->data = OIFData::Pointer(new OIFData(fileName)); 151 150 } -
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.