Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7886 in orxonox.OLD for branches/gui/src/lib


Ignore:
Timestamp:
May 27, 2006, 2:47:12 AM (18 years ago)
Author:
bensch
Message:

gui: delete event

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/util/color.cc

    r7195 r7886  
    113113  }
    114114  else {
    115    if(h == 360.)
    116      h = 0.0;
     115   if(h >= 360.)
     116     h = h - (float)((int)(ceilf(h) / 360.0));
    117117    h /= 60.;
    118118    i = (int) h;
Note: See TracChangeset for help on using the changeset viewer.