summaryrefslogtreecommitdiffstats
path: root/meta/packages/qemu/files/mouse_fix-r0.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
commitb2f192faabe412adce79534e22efe9fb69ee40e2 (patch)
tree7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/qemu/files/mouse_fix-r0.patch
parent2cf0eadf9f730027833af802d7e6c90b44248f80 (diff)
downloadpoky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/qemu/files/mouse_fix-r0.patch')
-rw-r--r--meta/packages/qemu/files/mouse_fix-r0.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/packages/qemu/files/mouse_fix-r0.patch b/meta/packages/qemu/files/mouse_fix-r0.patch
new file mode 100644
index 0000000000..8cc19f0392
--- /dev/null
+++ b/meta/packages/qemu/files/mouse_fix-r0.patch
@@ -0,0 +1,25 @@
1If the cursor is hidden (SDL_ShowCursor(0)) and the input is grabbed
2(SDL_WM_GrabInput(SDL_GRAB_ON)), then the mouse will give relative motion
3events even when the cursor reaches the edge fo the screen. This is currently
4only implemented on Windows and Linux/Unix-a-likes.
5
6Index: qemu/sdl.c
7===================================================================
8--- qemu.orig/sdl.c 2006-04-13 12:22:22.000000000 +0100
9+++ qemu/sdl.c 2006-05-25 00:28:25.000000000 +0100
10@@ -280,13 +280,13 @@
11
12 static void sdl_hide_cursor(void)
13 {
14- SDL_SetCursor(sdl_cursor_hidden);
15+ SDL_ShowCursor(0);
16 }
17
18 static void sdl_show_cursor(void)
19 {
20 if (!kbd_mouse_is_absolute()) {
21- SDL_SetCursor(sdl_cursor_normal);
22+ SDL_ShowCursor(1);
23 }
24 }
25