Changed: #1219 Bad color when rgba.cpp is compiled with GCC 4.2.4

hg/feature/sound
kervala 14 years ago
parent d6f29299a1
commit e53a439e7f

@ -646,6 +646,11 @@ bool CRGBA::convertToHLS(float &h, float &l, float &s) const
{
h = 4.f + (r - g) / diff;
}
else
{
// this case is to fix a compiler bug
h = (g - b) / diff;
}
h *= 60.f; // scale to [0..360]

Loading…
Cancel
Save