Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 17, 2009, 11:53:35 PM (15 years ago)
Author:
rgrieder
Message:

Found a few more C-Style casts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/overlays/hud/HUDTimer.cc

    r3280 r3300  
    5959            if (gametype->getTimerIsActive())
    6060            {
    61                 this->setCaption(multi_cast<std::string>((int)gametype->getTime() + 1));
     61                this->setCaption(multi_cast<std::string>(static_cast<int>(gametype->getTime()) + 1));
    6262            }
    6363        }
Note: See TracChangeset for help on using the changeset viewer.