Changeset 10055 in orxonox.OLD for branches/mount_points/src/world_entities
- Timestamp:
- Dec 13, 2006, 12:45:20 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/world_entities/world_entity.cc
r10053 r10055 209 209 210 210 // now get the object information file for this model, if any 211 std::string oifName = fileName.substr(0, fileName.length() - 3) + ".oif";211 std::string oifName = fileName.substr(0, fileName.length() - 4) + ".oif"; 212 212 this->loadObjectInformationFile( oifName); 213 213 } … … 266 266 void WorldEntity::loadObjectInformationFile(const std::string& fileName) 267 267 { 268 PRINTF(0)("loading the oif File: %s ", fileName.c_str());268 PRINTF(0)("loading the oif File: %s\n", fileName.c_str()); 269 269 270 270 this->oiFile = new ObjectInformationFile(fileName);
Note: See TracChangeset
for help on using the changeset viewer.