diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-04-09 17:09:42 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-04-09 17:09:42 +0000 |
commit | 8c52a70b6445aa8bc29f242599f50e5f52f1078f (patch) | |
tree | cb0ac2c9c8beabcd70c390cafeb832a25c90fbd9 /emulators/qemu-devel/files/patch-sdl.c | |
parent | - Update to 1.0b6 (diff) |
Update to 2006-04-08 snapshot.
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=159220
Diffstat (limited to 'emulators/qemu-devel/files/patch-sdl.c')
-rw-r--r-- | emulators/qemu-devel/files/patch-sdl.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/emulators/qemu-devel/files/patch-sdl.c b/emulators/qemu-devel/files/patch-sdl.c deleted file mode 100644 index 2b64583d0a0b..000000000000 --- a/emulators/qemu-devel/files/patch-sdl.c +++ /dev/null @@ -1,29 +0,0 @@ -# 1.24 -Index: qemu/sdl.c -@@ -404,6 +404,7 @@ - mod_state = (ev->key.keysym.mod & gui_grab_code); - if (!mod_state) { - if (gui_key_modifier_pressed) { -+ gui_key_modifier_pressed = 0; - if (gui_keysym == 0) { - /* exit/enter grab if pressing Ctrl-Alt */ - if (!gui_grab) -@@ -415,7 +416,6 @@ - reset_keys(); - break; - } -- gui_key_modifier_pressed = 0; - gui_keysym = 0; - } - } -@@ -456,8 +456,8 @@ - } - break; - case SDL_ACTIVEEVENT: -- if (gui_grab && (ev->active.gain & SDL_ACTIVEEVENTMASK) == 0 && -- !gui_fullscreen_initial_grab) { -+ if (gui_grab && ev->active.state == SDL_APPINPUTFOCUS && -+ !ev->active.gain && !gui_fullscreen_initial_grab) { - sdl_grab_end(); - } - break; |