Fix possible loss of data warning in RGBController_KingstonFuryDRAM.cpp

This commit is contained in:
Adam Honse 2024-07-30 21:16:31 -05:00
parent bbe97538d8
commit 3a62cc8379

View file

@ -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);
}