Skip to content

Commit

Permalink
Fixed invalid keyboard mapping of CLK_EqualsAndPlus and CLK_MinusAndU…
Browse files Browse the repository at this point in the history
…nderscore.
  • Loading branch information
MartB committed Jul 28, 2017
1 parent 3b4eae6 commit 5a192fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server-exe/CorsairSDK.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@ bool CorsairSDK::findKeyboardLed(CorsairLedId ledid, int* row, int* col) {
maptoassign(CLK_LeftShift, RZKEY_LSHIFT);
maptoassign(CLK_RightShift, RZKEY_RSHIFT);
maptoassign(CLK_GraveAccentAndTilde, RZKEY_OEM_1);
maptoassign(CLK_EqualsAndPlus, RZKEY_OEM_2);
maptoassign(CLK_MinusAndUnderscore, RZKEY_OEM_3);
maptoassign(CLK_EqualsAndPlus, RZKEY_OEM_3);
maptoassign(CLK_MinusAndUnderscore, RZKEY_OEM_2);
maptoassign(CLK_BracketLeft, RZKEY_OEM_4);
maptoassign(CLK_BracketRight, RZKEY_OEM_5);
maptoassign(CLK_Backslash, RZKEY_OEM_6);
Expand Down

0 comments on commit 5a192fe

Please sign in to comment.