diff options
Diffstat (limited to 'emulators/qemu/patches/patch-az')
-rw-r--r-- | emulators/qemu/patches/patch-az | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/emulators/qemu/patches/patch-az b/emulators/qemu/patches/patch-az deleted file mode 100644 index 901d51f1a1f..00000000000 --- a/emulators/qemu/patches/patch-az +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-az,v 1.1 2006/05/07 21:33:53 xtraeme Exp $ - -Patch to fix the mouse pointer "invisible wall": -http://lists.gnu.org/archive/html/qemu-devel/2006-05/msg00112.html - ---- sdl.c.orig 2006-05-07 23:29:46.000000000 +0200 -+++ sdl.c 2006-05-07 23:31:00.000000000 +0200 -@@ -280,14 +280,17 @@ - - static void sdl_hide_cursor(void) - { -+ if (kbd_mouse_is_absolute()) { -+ SDL_ShowCursor(1); - SDL_SetCursor(sdl_cursor_hidden); -+ } else -+ SDL_ShowCursor(0); - } - - static void sdl_show_cursor(void) - { -- if (!kbd_mouse_is_absolute()) { -- SDL_SetCursor(sdl_cursor_normal); -- } -+ if (!kbd_mouse_is_absolute()) -+ SDL_ShowCursor(1); - } - - static void sdl_grab_start(void) |