mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Update LedDevicePhilipsHue.cpp
Changed "isnan" to "std::isnan" Former-commit-id: 528f02452762fade16b84d17dc7692de9129559c
This commit is contained in:
parent
945f3d1c5b
commit
019d4ba6d8
@ -105,10 +105,10 @@ CiColor PhilipsHueLight::rgbToCiColor(float red, float green, float blue) {
|
|||||||
// Convert to x,y space.
|
// Convert to x,y space.
|
||||||
float cx = X / (X + Y + Z);
|
float cx = X / (X + Y + Z);
|
||||||
float cy = Y / (X + Y + Z);
|
float cy = Y / (X + Y + Z);
|
||||||
if (isnan(cx)) {
|
if (std::isnan(cx)) {
|
||||||
cx = 0.0f;
|
cx = 0.0f;
|
||||||
}
|
}
|
||||||
if (isnan(cy)) {
|
if (std::isnan(cy)) {
|
||||||
cy = 0.0f;
|
cy = 0.0f;
|
||||||
}
|
}
|
||||||
// Brightness is simply Y in the XYZ space.
|
// Brightness is simply Y in the XYZ space.
|
||||||
|
Loading…
Reference in New Issue
Block a user