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

This commit is contained in:
Adam Honse 2020-08-31 23:29:01 -05:00
parent f741cb7c6b
commit 94c18fc9b4

View file

@ -401,7 +401,7 @@ void HyperXKeyboardController::SendExtendedColor
/*-----------------------------------------------------*\
| Fill in color data |
\*-----------------------------------------------------*/
for(int i = 0x08; i <= 0x93; i++)
for(int i = 0x08; i < 0x94; i++)
{
buf[i] = color_data[i];
}
@ -470,7 +470,7 @@ void HyperXKeyboardController::SendDirectExtended
/*-----------------------------------------------------*\
| Fill in color data |
\*-----------------------------------------------------*/
for(int i = 0x08; i <= 0x93; i++)
for(int i = 0x08; i < 0x94; i++)
{
buf[i] = color_data[i];
}