Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 6, 2008, 9:51:01 PM (16 years ago)
Author:
rgrieder
Message:
  • changed library dependency dir to lib_precompiled/include/ in msvc properties
  • fixed a bug with tolua pkg file in msvc
  • (u)int64_t to (unsigned) long long (C-Standard, so most c++ will have it anyway)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/gamestates/GSGraphics.cc

    r1696 r1724  
    160160    void GSGraphics::ticked(const Clock& time)
    161161    {
    162         uint64_t timeBeforeTick = time.getRealMicroseconds();
     162        unsigned long long timeBeforeTick = time.getRealMicroseconds();
    163163        float dt = time.getDeltaTime();
    164164
     
    168168        this->tickChild(time);
    169169       
    170         uint64_t timeAfterTick = time.getRealMicroseconds();
     170        unsigned long long timeAfterTick = time.getRealMicroseconds();
    171171
    172172        tickTime_ += (unsigned int)(timeAfterTick - timeBeforeTick);
Note: See TracChangeset for help on using the changeset viewer.