Skip to content

Commit

Permalink
Fix left shift not showing up as a bind (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
erysdren committed Jan 20, 2024
1 parent a222280 commit 6b3827d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rott/_rt_menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,15 +212,15 @@ static byte ExtScanCodes[] = // Scan codes with >1 char names
1, 0xe, 0xf, 0x1d, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,
0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x57, 0x58, 0x46, 0x1c, 0x36,
0x37, 0x38, 0x47, 0x49, 0x4f, 0x51, 0x52, 0x53, 0x45, 0x48,
0x50, 0x4b, 0x4d, 0x00
0x50, 0x4b, 0x4d, 0x2a, 0x00
};

static char *ExtScanNames[] = // Names corresponding to ExtScanCodes
{
"Esc","BkSp","Tab","Ctrl","Space","CapLk","F1","F2","F3","F4",
"F5","F6","F7","F8","F9","F10","F11","F12","SclLk","Enter","Shift",
"F5","F6","F7","F8","F9","F10","F11","F12","SclLk","Enter","RShift",
"PrtSc","Alt","Home","PgUp","End","PgDn","Ins","Del","NumLk","Up",
"Down","Left","Right",""
"Down","Left","Right","LShift",""
};


Expand Down

0 comments on commit 6b3827d

Please sign in to comment.