projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
79737e4
)
'invisible wall' patch (Anthony Liguori)
author
bellard
<bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 13 Jun 2006 10:49:12 +0000
(10:49 +0000)
committer
bellard
<bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 13 Jun 2006 10:49:12 +0000
(10:49 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1953
c046a42c
-6fe2-441c-8c8c-
71466251a162
sdl.c
patch
|
blob
|
history
diff --git
a/sdl.c
b/sdl.c
index ec4f93c5efb1d38f0b470b7c77224f1d5ba93dde..d99505ef162b31febe7524664a7db2cbe4f26058 100644
(file)
--- a/
sdl.c
+++ b/
sdl.c
@@
-285,13
+285,18
@@
static void sdl_update_caption(void)
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
);
}
}