Commit 0dee5eb1 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

winex11.drv: Replace no-longer-existent VK_A, VK_Z, VK_0, and VK_9 constants.

parent 8c768fb4
......@@ -1672,8 +1672,8 @@ void X11DRV_InitKeyboard(void)
for (i = 0; (i < keysyms_per_keycode) && (!vkey); i++)
{
keysym = XLookupKeysym(&e2, i);
if ((keysym >= VK_0 && keysym <= VK_9)
|| (keysym >= VK_A && keysym <= VK_Z)) {
if ((keysym >= XK_0 && keysym <= XK_9)
|| (keysym >= XK_A && keysym <= XK_Z)) {
vkey = keysym;
}
}
......
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