Change pump LED limit to 33 on CorsairCommanderCoreController
This commit is contained in:
parent
be46543f4c
commit
dbc503b3e1
2 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
/*-------------------------------------------------*\
|
||||
|
|
|
|||
|
|
@ -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++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue