fileshredder - linux compile fix

This commit is contained in:
Shredder
2026-04-06 02:15:35 +05:00
parent e272991159
commit 2237515793

View File

@@ -48,8 +48,8 @@ Color Color::getHSBColor(float hue, float saturation, float brightness)
} }
else else
{ {
float h = (hue - (float)floor(hue)) * 6.0f; float h = (hue - (float)Mth::floor(hue)) * 6.0f;
float f = h - (float)floor(h); float f = h - (float)Mth::floor(h);
float p = brightness * (1.0f - saturation); float p = brightness * (1.0f - saturation);
float q = brightness * (1.0f - saturation * f); float q = brightness * (1.0f - saturation * f);
float t = brightness * (1.0f - (saturation * (1.0f - f))); float t = brightness * (1.0f - (saturation * (1.0f - f)));