mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-18 19:46:27 -04:00
Fix possible loss of data warning in RGBController_Razer.cpp
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user