Mercurial > sdl-ios-xcode
changeset 1194:b8f167923bfc
Date: Sun, 04 Dec 2005 21:43:46 -0500
From: Jonathan Atkins <jcatki@jcatki.no-ip.org>
Subject: SDL patch: DGA key events
I kept seeing DGA die on me whenever I press a key.
I tracked it down and it seems that the new indirect X via pointers
system messed it up. It needed to have the pX* pointers well defined to
call, in particular, pXNextEvent. Also, the X11_TranslateKey function
prototype was changed, but not updated in the dga driver. perhaps other
files are also affected.
Not sure what releases may suffer from this too.
thanks!
-Jon Atkins
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 05 Dec 2005 04:36:53 +0000 |
parents | 3bafdbba8dcf |
children | bb6791b0a268 |
files | src/video/dga/SDL_dgaevents.c |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/dga/SDL_dgaevents.c Thu Dec 01 19:22:32 2005 +0000 +++ b/src/video/dga/SDL_dgaevents.c Mon Dec 05 04:36:53 2005 +0000 @@ -36,10 +36,13 @@ #include "SDL_dgavideo.h" #include "SDL_dgaevents_c.h" +/* get function pointers... */ +#include "../x11/SDL_x11dyn.h" + /* Heheh we're using X11 event code */ extern int X11_Pending(Display *display); extern void X11_InitKeymap(void); -extern SDL_keysym *X11_TranslateKey(Display *display, XKeyEvent *xkey, +extern SDL_keysym *X11_TranslateKey(Display *display, XIC ic, XKeyEvent *xkey, KeyCode kc, SDL_keysym *keysym); static int DGA_DispatchEvent(_THIS) @@ -84,7 +87,7 @@ SDL_NAME(XDGAKeyEventToXKeyEvent)(&xevent.xkey, &xkey); posted = SDL_PrivateKeyboard((xevent.type == KeyPress), - X11_TranslateKey(DGA_Display, + X11_TranslateKey(DGA_Display, NULL/*no XIC*/, &xkey, xkey.keycode, &keysym)); }