Change pump LED limit to 33 on CorsairCommanderCoreController

This commit is contained in:
TheRogueZeta 2022-01-22 12:09:08 -08:00 committed by Adam Honse
parent be46543f4c
commit dbc503b3e1
2 changed files with 3 additions and 3 deletions

View file

@ -187,11 +187,11 @@ void CorsairCommanderCoreController::SetDirectColor
led_idx = led_idx + zones[zone_idx].leds_count;
/*-------------------------------------------------*\
| Move offset for pump zone with less than 29 LEDs |
| Move offset for pump zone with less than 33 LEDs |
\*-------------------------------------------------*/
if(zone_idx == 0)
{
packet_offset = packet_offset + 3 * (29 - zones[zone_idx].leds_count);
packet_offset = packet_offset + 3 * (33 - zones[zone_idx].leds_count);
}
/*-------------------------------------------------*\

View file

@ -47,7 +47,7 @@ void RGBController_CorsairCommanderCore::SetupZones()
zones[0].name = "Pump";
zones[0].type = ZONE_TYPE_LINEAR;
zones[0].leds_min = 0;
zones[0].leds_max = 29;
zones[0].leds_max = 33;
for(unsigned int i = 1; i < (CORSAIR_COMMANDER_CORE_NUM_CHANNELS + 1); i++)
{