Commit d88d2d4d authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

winex11.drv: Fix off-by-one in map of non-char keysyms to vkeys.

parent 75195ad4
......@@ -1002,7 +1002,7 @@ static const WORD nonchar_key_vkey[256] =
0, 0, 0, 0, 0, 0, 0, 0, /* FF58 */
/* misc keys */
VK_SELECT, VK_SNAPSHOT, VK_EXECUTE, VK_INSERT, 0, 0, 0, 0, /* FF60 */
VK_CANCEL, VK_HELP, VK_CANCEL, VK_CANCEL, 0, 0, 0, 0, /* FF68 */
0, VK_CANCEL, VK_HELP, VK_CANCEL, 0, 0, 0, 0, /* FF68 */
0, 0, 0, 0, 0, 0, 0, 0, /* FF70 */
/* keypad keys */
0, 0, 0, 0, 0, 0, 0, VK_NUMLOCK, /* FF78 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment