Changeset 4834 in orxonox.OLD for orxonox/trunk/src/glmenu
- Timestamp:
- Jul 11, 2005, 5:47:23 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/glmenu/glmenu_imagescreen.cc
r4597 r4834 184 184 void GLMenuImageScreen::step () 185 185 { 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); 188 193 } 189 194
Note: See TracChangeset
for help on using the changeset viewer.