Skip to content

Commit 94c18fc

Browse files
Change less than or equal to less than. This shouldn't change anything, but it seems the Media Next key has issues as it was and this fixes that
1 parent f741cb7 commit 94c18fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Controllers/HyperXKeyboardController/HyperXKeyboardController.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ void HyperXKeyboardController::SendExtendedColor
401401
/*-----------------------------------------------------*\
402402
| Fill in color data |
403403
\*-----------------------------------------------------*/
404-
for(int i = 0x08; i <= 0x93; i++)
404+
for(int i = 0x08; i < 0x94; i++)
405405
{
406406
buf[i] = color_data[i];
407407
}
@@ -470,7 +470,7 @@ void HyperXKeyboardController::SendDirectExtended
470470
/*-----------------------------------------------------*\
471471
| Fill in color data |
472472
\*-----------------------------------------------------*/
473-
for(int i = 0x08; i <= 0x93; i++)
473+
for(int i = 0x08; i < 0x94; i++)
474474
{
475475
buf[i] = color_data[i];
476476
}

0 commit comments

Comments
 (0)