Skip to content

Commit

Permalink
x11: Patched to compile on systems without the Xutf8LookupString() fu…
Browse files Browse the repository at this point in the history
…nction.
  • Loading branch information
icculus committed Jul 11, 2015
1 parent 4679195 commit 0c19501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11events.c
Expand Up @@ -808,7 +808,7 @@ X11_DispatchEvent(_THIS)
&keysym, &status);
}
#else
XLookupString(&xevent.xkey, text, sizeof(text), &keysym, NULL);
X11_XLookupString(&xevent.xkey, text, sizeof(text), &keysym, NULL);
#endif

#ifdef SDL_USE_IBUS
Expand Down

0 comments on commit 0c19501

Please sign in to comment.