Fix possible loss of data warning in RGBController_KingstonFuryDRAM.cpp
This commit is contained in:
parent
bbe97538d8
commit
3a62cc8379
1 changed files with 1 additions and 1 deletions
|
|
@ -432,7 +432,7 @@ void RGBController_KingstonFuryDRAM::SetupZones()
|
|||
new_led->name.append(", LED ");
|
||||
new_led->name.append(std::to_string(led_idx + 1));
|
||||
|
||||
new_led->value = leds.size();
|
||||
new_led->value = (unsigned int)leds.size();
|
||||
|
||||
leds.push_back(*new_led);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue