# HG changeset patch # User Sam Lantinga # Date 1231097210 0 # Node ID 2fad80c77c1720a85c557d9565ca31134e65d01e # Parent dbff5769d742f4caf072a62ed99cc56bb5defaac Technically more correct diff -r dbff5769d742 -r 2fad80c77c17 src/video/x11/SDL_x11events.c --- a/src/video/x11/SDL_x11events.c Sun Jan 04 18:29:20 2009 +0000 +++ b/src/video/x11/SDL_x11events.c Sun Jan 04 19:26:50 2009 +0000 @@ -294,15 +294,15 @@ #ifdef DEBUG_MOTION printf("X11 motion: %d,%d\n", xevent.xmotion.x, xevent.xmotion.y); #endif - SDL_SendMouseMotion(0, 0, xevent.xmotion.x, xevent.xmotion.y, 0); + SDL_SendMouseMotion(mouse->id, 0, xevent.xmotion.x, xevent.xmotion.y, 0); break; case ButtonPress: - SDL_SendMouseButton(0, SDL_PRESSED, xevent.xbutton.button); + SDL_SendMouseButton(mouse->id, SDL_PRESSED, xevent.xbutton.button); break; case ButtonRelease: - SDL_SendMouseButton(0, SDL_RELEASED, xevent.xbutton.button); + SDL_SendMouseButton(mouse->id, SDL_RELEASED, xevent.xbutton.button); break; } continue;