qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6476] Fix absolute mode mice.
@ 2009-01-29 23:19 Andrzej Zaborowski
  0 siblings, 0 replies; only message in thread
From: Andrzej Zaborowski @ 2009-01-29 23:19 UTC (permalink / raw)
  To: qemu-devel

Revision: 6476
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6476
Author:   balrog
Date:     2009-01-29 23:19:20 +0000 (Thu, 29 Jan 2009)

Log Message:
-----------
Fix absolute mode mice.

width and height were never set which means that host coordinates were 
divided by -1 instead of (width - 1) / 0x7fff.

Modified Paths:
--------------
    trunk/sdl.c

Modified: trunk/sdl.c
===================================================================
--- trunk/sdl.c	2009-01-29 19:59:04 UTC (rev 6475)
+++ trunk/sdl.c	2009-01-29 23:19:20 UTC (rev 6476)
@@ -93,7 +93,9 @@
     if (gui_noframe)
         flags |= SDL_NOFRAME;
 
-    real_screen = SDL_SetVideoMode(ds_get_width(ds), ds_get_height(ds), 0, flags);
+    width = ds_get_width(ds);
+    height = ds_get_height(ds);
+    real_screen = SDL_SetVideoMode(width, height, 0, flags);
     if (!real_screen) {
         fprintf(stderr, "Could not open SDL display\n");
         exit(1);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-01-29 23:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-29 23:19 [Qemu-devel] [6476] Fix absolute mode mice Andrzej Zaborowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).