mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-18 11:35:21 -04:00
Fix possible loss of data warning in RGBController_BlinkController.cpp
This commit is contained in:
@@ -105,9 +105,9 @@ void RGBController_BlinkController::ResizeZone(int /*zone*/, int /*new_size*/)
|
||||
|
||||
void RGBController_BlinkController::DeviceUpdateLEDs()
|
||||
{
|
||||
for (std::size_t led = 0; led < colors.size(); led++)
|
||||
for(std::size_t led = 0; led < colors.size(); led++)
|
||||
{
|
||||
UpdateSingleLED(led);
|
||||
UpdateSingleLED((int)led);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user