mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 06:11:07 -04:00
Fix warning in RGBController_HYTEKeyboard.cpp
This commit is contained in:
@@ -184,7 +184,7 @@ void RGBController_HYTEKeyboard::UpdateZoneLEDs(int zone)
|
||||
|
||||
void RGBController_HYTEKeyboard::UpdateSingleLED(int led)
|
||||
{
|
||||
if(led < zones[0].leds_count)
|
||||
if(led < (int)zones[0].leds_count)
|
||||
{
|
||||
UpdateZoneLEDs(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user