Fix possible loss of data warning in RGBController_BlinkController.cpp
This commit is contained in:
parent
28f7e09558
commit
0027936b1d
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue