Fix warning in RGBController_EVGAGP102.cpp

This commit is contained in:
Adam Honse 2022-09-16 11:47:07 -05:00
parent 0a1306aefa
commit 48b819218d

View file

@ -141,7 +141,7 @@ void RGBController_EVGAGP102::UpdateSingleLED(int /*led*/)
void RGBController_EVGAGP102::DeviceUpdateMode()
{
for (int i = 0; i < evga.size(); i++)
for(unsigned int i = 0; i < evga.size(); i++)
{
evga[i]->SetMode((unsigned char)modes[(unsigned int)active_mode].value);
}