Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1092


Ignore:
Timestamp:
Apr 17, 2008, 1:49:12 PM (16 years ago)
Author:
rgrieder
Message:
  • little 'mess' cleanup
File:
1 edited

Legend:

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

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