mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
Keysym check should use 0x8000 instead of 0x800 (spotted by Dmitry
Timoshkov).
This commit is contained in:
parent
f8aa3b506c
commit
a52b2777b2
@ -1288,7 +1288,7 @@ void X11DRV_InitKeyboard( BYTE *key_state_table )
|
||||
int maxlen=0,maxval=-1,ok;
|
||||
for (i=0; i<syms; i++) {
|
||||
keysym = XKeycodeToKeysym(display, keyc, i);
|
||||
if ((keysym<0x800) && (keysym!=' '))
|
||||
if ((keysym<0x8000) && (keysym!=' '))
|
||||
{
|
||||
#ifdef HAVE_XKB
|
||||
if (!is_xkb || !XkbTranslateKeySym(display, &keysym, 0, &ckey[i], 1, NULL))
|
||||
|
Loading…
Reference in New Issue
Block a user