Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 31, 2006, 1:55:42 PM (19 years ago)
Author:
patrick
Message:

cd_merge: comipiles again. major interface adjustements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/cd_merge/src/world_entities/world_entity.cc

    r6634 r6890  
    202202 * @param depth the depth to calculate
    203203 */
    204 bool WorldEntity::buildObbTree(unsigned int depth)
     204bool WorldEntity::buildObbTree(int depth)
    205205{
    206206  if (this->obbTree)
     
    211211    PRINTF(4)("creating obb tree\n");
    212212
    213 
    214     this->obbTree = new OBBTree(depth, (sVec3D*)this->models[0]->getVertexArray(), this->models[0]->getVertexCount());
     213    this->obbTree = new OBBTree(depth, this->models[0]->getModelInfo());
    215214    return true;
    216215  }
Note: See TracChangeset for help on using the changeset viewer.