mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-18 11:35:21 -04:00
Remove unsigned less than zero check which always returns false in ElgatoLightStripController.cpp
This commit is contained in:
@@ -99,11 +99,6 @@ std::string ElgatoLightStripController::GetUniqueID()
|
||||
|
||||
void ElgatoLightStripController::SetColor(hsv_t hsv_color)
|
||||
{
|
||||
if(hsv_color.hue < 0)
|
||||
{
|
||||
hsv_color.hue = 0;
|
||||
}
|
||||
|
||||
if(hsv_color.hue > 360)
|
||||
{
|
||||
hsv_color.hue = 360;
|
||||
|
||||
Reference in New Issue
Block a user