Changeset 1724 for code/branches/gui/src/orxonox/gamestates
- Timestamp:
- Sep 6, 2008, 9:51:01 PM (16 years ago)
- Location:
- code/branches/gui/src/orxonox/gamestates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/orxonox/gamestates/GSGraphics.cc
r1696 r1724 160 160 void GSGraphics::ticked(const Clock& time) 161 161 { 162 u int64_ttimeBeforeTick = time.getRealMicroseconds();162 unsigned long long timeBeforeTick = time.getRealMicroseconds(); 163 163 float dt = time.getDeltaTime(); 164 164 … … 168 168 this->tickChild(time); 169 169 170 u int64_ttimeAfterTick = time.getRealMicroseconds();170 unsigned long long timeAfterTick = time.getRealMicroseconds(); 171 171 172 172 tickTime_ += (unsigned int)(timeAfterTick - timeBeforeTick); -
code/branches/gui/src/orxonox/gamestates/GSGraphics.h
r1689 r1724 80 80 unsigned long frameCount_; 81 81 unsigned int statisticsRefreshCycle_; 82 u int64_tstatisticsStartTime_;82 unsigned long long statisticsStartTime_; 83 83 unsigned long statisticsStartCount_; 84 84 unsigned int tickTime_;
Note: See TracChangeset
for help on using the changeset viewer.