Explorar el Código

x11: replace deprecated XKeycodeToKeysym() with XLookupKeysym().

tags/v0.99.beta20
Sam Hocevar hace 9 años
padre
commit
55f85166e5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      caca/driver/x11.c

+ 1
- 1
caca/driver/x11.c Ver fichero

@@ -626,7 +626,7 @@ static int x11_get_event(caca_display_t *dp, caca_privevent_t *ev)
return 1;
}

keysym = XKeycodeToKeysym(dp->drv.p->dpy, xevent.xkey.keycode, 0);
keysym = XLookupKeysym(&xevent.xkey, 0);
switch(keysym)
{
case XK_F1: ev->data.key.ch = CACA_KEY_F1; break;


Cargando…
Cancelar
Guardar