diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-08-07 16:10:27 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-08-07 16:10:27 +0000 |
commit | abffcb30ec97e8b7fe50b51b323a63201f83190d (patch) | |
tree | 14535343032cf24b54d2d185d006e38ee894f846 /emulators/qemu/files/patch-sdl.c | |
parent | 826d991f606c4ee01defa9be677d6caf59f02f22 (diff) |
Notes
Diffstat (limited to 'emulators/qemu/files/patch-sdl.c')
-rw-r--r-- | emulators/qemu/files/patch-sdl.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/emulators/qemu/files/patch-sdl.c b/emulators/qemu/files/patch-sdl.c deleted file mode 100644 index 68ea6cd4dc51..000000000000 --- a/emulators/qemu/files/patch-sdl.c +++ /dev/null @@ -1,23 +0,0 @@ -Index: qemu/sdl.c -@@ -280,13 +280,19 @@ - - static void sdl_hide_cursor(void) - { -- SDL_SetCursor(sdl_cursor_hidden); -+ 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); -+ SDL_ShowCursor(1); - } - } - |