Fix possible loss of data warning in RGBController_Razer.cpp

This commit is contained in:
Adam Honse 2024-08-13 19:44:38 -05:00
parent fed58b3dc1
commit 15f7ba8b12

View file

@ -240,7 +240,7 @@ void RGBController_Razer::SetupZones()
{
led new_led;
new_led.name = new_kb.GetKeyNameAt(row, col);
new_led.name = new_kb.GetKeyNameAt((unsigned int)row, (unsigned int)col);
leds.push_back(new_led);
}