Skip to content

Commit 4248556

Browse files
committed
Add key code exceptions for F13-24.
1 parent a8655a5 commit 4248556

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/com/esotericsoftware/clippy/Keyboard.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,18 @@ public class Keyboard {
5656
put(VK_SEMICOLON, 0xBA);
5757
put(VK_PRINTSCREEN, 0x2C);
5858
put(VK_BACK_SLASH, 0xDC);
59+
put(VK_F13, 0x7C);
60+
put(VK_F14, 0x7D);
61+
put(VK_F15, 0x7E);
62+
put(VK_F16, 0x7F);
63+
put(VK_F17, 0x80);
64+
put(VK_F18, 0x81);
65+
put(VK_F19, 0x82);
66+
put(VK_F20, 0x83);
67+
put(VK_F21, 0x84);
68+
put(VK_F22, 0x85);
69+
put(VK_F23, 0x86);
70+
put(VK_F24, 0x87);
5971
}
6072
};
6173

0 commit comments

Comments
 (0)