Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 25, 2009, 2:14:05 PM (15 years ago)
Author:
rgrieder
Message:

Moved InputManager, GUIManager and GraphicsManager handling from GSGraphics to Core.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource/src/orxonox/gamestates/GSRoot.cc

    r3340 r3349  
    4545namespace orxonox
    4646{
    47     DeclareGameState(GSRoot, "root", true, false);
     47    DeclareGameState(GSRoot, "root", false, false);
    4848    SetCommandLineSwitch(console).information("Start in console mode (text IO only)");
    4949    // Shortcuts for easy direct loading
     
    155155        }
    156156
    157         uint64_t timeBeforeTick = time.getRealMicroseconds();
    158 
    159157        for (ObjectList<TimerBase>::iterator it = ObjectList<TimerBase>::begin(); it; ++it)
    160158            it->tick(time);
     
    171169            it->tick(leveldt * this->timeFactor_);
    172170        /*** HACK *** HACK ***/
    173 
    174         uint64_t timeAfterTick = time.getRealMicroseconds();
    175 
    176         // Also add our tick time
    177         Game::getInstance().addTickTime(timeAfterTick - timeBeforeTick);
    178171    }
    179172
Note: See TracChangeset for help on using the changeset viewer.