Changeset 6532 in orxonox.OLD for trunk/src/world_entities/movie_entity.cc
- Timestamp:
- Jan 18, 2006, 1:20:02 PM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/movie_entity.cc
r6526 r6532 65 65 void MovieEntity::loadParams(const TiXmlElement* root) 66 66 { 67 static_cast<WorldEntity*>(this)->loadParams(root);67 WorldEntity::loadParams(root); 68 68 69 69 LoadParam(root, "name", this, MovieEntity, loadMovie); … … 107 107 if(counter != fps * timer) 108 108 { 109 counter = fps * timer;109 counter = (int)(fps * timer); 110 110 111 111 if (counter >= media_container->getFrameCount())
Note: See TracChangeset
for help on using the changeset viewer.