Skip to content

Commit

Permalink
Add key code exceptions for F13-24.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Feb 17, 2020
1 parent a8655a5 commit 4248556
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/com/esotericsoftware/clippy/Keyboard.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ public class Keyboard {
put(VK_SEMICOLON, 0xBA);
put(VK_PRINTSCREEN, 0x2C);
put(VK_BACK_SLASH, 0xDC);
put(VK_F13, 0x7C);
put(VK_F14, 0x7D);
put(VK_F15, 0x7E);
put(VK_F16, 0x7F);
put(VK_F17, 0x80);
put(VK_F18, 0x81);
put(VK_F19, 0x82);
put(VK_F20, 0x83);
put(VK_F21, 0x84);
put(VK_F22, 0x85);
put(VK_F23, 0x86);
put(VK_F24, 0x87);
}
};

Expand Down

0 comments on commit 4248556

Please # to comment.