mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-03-23 16:31:06 -04:00
Fix signed/unsigned mismatch warning in RGBController_AsusAuraGPU.cpp
This commit is contained in:
@@ -32,7 +32,7 @@ int RGBController_AuraGPU::GetDeviceMode()
|
||||
break;
|
||||
}
|
||||
|
||||
for(int mode = 0; mode < modes.size(); mode++)
|
||||
for(unsigned int mode = 0; mode < modes.size(); mode++)
|
||||
{
|
||||
if(modes[mode].value == dev_mode)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user