Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2008, 5:50:25 PM (16 years ago)
Author:
rgrieder
Message:
  • changed header file inclusion order
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/Orxonox.cc

    r1056 r1062  
    448448      // Iterate through all Tickables and call their tick(dt) function
    449449      for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; )
    450         (it++)->tick((float)evt.timeSinceLastFrame * this->timefactor_);
     450      {
     451        (it)->tick((float)evt.timeSinceLastFrame * this->timefactor_);
     452         it++;
     453     }
    451454
    452455      // don't forget to call _fireFrameStarted in ogre to make sure
Note: See TracChangeset for help on using the changeset viewer.