summaryrefslogtreecommitdiff
path: root/packages/qemu/files/mouse_fix-r0.patch
diff options
context:
space:
mode:
authorCliff Brake <cbrake@bec-systems.com>2006-11-13 19:10:05 +0000
committerCliff Brake <cbrake@bec-systems.com>2006-11-13 19:10:05 +0000
commitf7171587f09b13c97cc73109cd9eaf7c5aa78e47 (patch)
treeb5946293f56e4dee2d643c5c411ed77405f4001f /packages/qemu/files/mouse_fix-r0.patch
parent38d9e8aff1967820b22faeea83610c3c359f7705 (diff)
parent40951de5f883d7a2d9d5445a9b73c3424ee245f1 (diff)
merge of '119a1b8e3787f193a0a34391450debc2878897c4'
and '4f36e4b6e145cb3251f372bb7153308459b7ea41'
Diffstat (limited to 'packages/qemu/files/mouse_fix-r0.patch')
-rw-r--r--packages/qemu/files/mouse_fix-r0.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/qemu/files/mouse_fix-r0.patch b/packages/qemu/files/mouse_fix-r0.patch
deleted file mode 100644
index 8cc19f0392..0000000000
--- a/packages/qemu/files/mouse_fix-r0.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-If the cursor is hidden (SDL_ShowCursor(0)) and the input is grabbed
-(SDL_WM_GrabInput(SDL_GRAB_ON)), then the mouse will give relative motion
-events even when the cursor reaches the edge fo the screen. This is currently
-only implemented on Windows and Linux/Unix-a-likes.
-
-Index: qemu/sdl.c
-===================================================================
---- qemu.orig/sdl.c 2006-04-13 12:22:22.000000000 +0100
-+++ qemu/sdl.c 2006-05-25 00:28:25.000000000 +0100
-@@ -280,13 +280,13 @@
-
- static void sdl_hide_cursor(void)
- {
-- SDL_SetCursor(sdl_cursor_hidden);
-+ SDL_ShowCursor(0);
- }
-
- static void sdl_show_cursor(void)
- {
- if (!kbd_mouse_is_absolute()) {
-- SDL_SetCursor(sdl_cursor_normal);
-+ SDL_ShowCursor(1);
- }
- }
-