Changeset 7886 in orxonox.OLD for branches/gui
- Timestamp:
- May 27, 2006, 2:47:12 AM (18 years ago)
- Location:
- branches/gui/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/util/color.cc
r7195 r7886 113 113 } 114 114 else { 115 if(h == 360.)116 h = 0.0;115 if(h >= 360.) 116 h = h - (float)((int)(ceilf(h) / 360.0)); 117 117 h /= 60.; 118 118 i = (int) h; -
branches/gui/src/story_entities/simple_game_menu.cc
r7885 r7886 100 100 if( this->dataTank) 101 101 delete this->dataTank; 102 delete OrxGui::GLGuiHandler::getInstance( ); 102 103 } 103 104
Note: See TracChangeset
for help on using the changeset viewer.