diff options
author | Jose V Beneyto <sepen@crux.nu> | 2012-01-23 09:00:10 +0100 |
---|---|---|
committer | Jose V Beneyto <sepen@crux.nu> | 2012-01-23 09:00:48 +0100 |
commit | 874633296ded0d538464f38e8b3d1925f69e00a5 (patch) | |
tree | 2fd9e313eb9c1c2fea91daeceb6bd8d6f60a9588 /libsdl | |
parent | fa7654f01723dc78333af4c97ac554162b86f110 (diff) | |
download | opt-874633296ded0d538464f38e8b3d1925f69e00a5.tar.gz opt-874633296ded0d538464f38e8b3d1925f69e00a5.tar.xz |
libsdl: removed patch no longer used
Diffstat (limited to 'libsdl')
-rw-r--r-- | libsdl/libsdl.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libsdl/libsdl.patch b/libsdl/libsdl.patch deleted file mode 100644 index 1fe0241e9..000000000 --- a/libsdl/libsdl.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- SDL-1.2.14/src/video/x11/SDL_x11events.c 2009-10-12 16:07:15.000000000 -0700 -+++ SDL-1.2/src/video/x11/SDL_x11events.c 2010-07-19 23:57:48.365397095 -0700 -@@ -441,8 +441,10 @@ - if ( xevent.xcrossing.mode == NotifyUngrab ) - printf("Mode: NotifyUngrab\n"); - #endif -- if ( xevent.xcrossing.detail != NotifyInferior ) { -- if ( this->input_grab == SDL_GRAB_OFF ) { -+ if ( (xevent.xcrossing.mode != NotifyGrab) && -+ (xevent.xcrossing.mode != NotifyUngrab) && -+ (xevent.xcrossing.detail != NotifyInferior) ) { -+ if ( this->input_grab == SDL_GRAB_OFF ) { - posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); - } else { - posted = SDL_PrivateMouseMotion(0, 0, |