Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4834 in orxonox.OLD for orxonox/trunk/src/glmenu


Ignore:
Timestamp:
Jul 11, 2005, 5:47:23 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: crosshair in WeaponManager (instead of World) and implemented easy Cyling for LoadParam

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/glmenu/glmenu_imagescreen.cc

    r4597 r4834  
    184184void GLMenuImageScreen::step ()
    185185{
    186   this->currentValue++;
    187   this->draw();
     186  if (this->currentValue < this->maxValue)
     187  {
     188    this->currentValue++;
     189    this->draw();
     190  }
     191  else
     192    PRINTF(2)("ImageScreen-loadbar exceeds maximum value %d\n", this->maxValue);
    188193}
    189194
Note: See TracChangeset for help on using the changeset viewer.