]> xenbits.xensource.com Git - qemu-xen-3.3-testing.git/commitdiff
Fix display resize bug.
authorpbrook <pbrook>
Tue, 18 Apr 2006 19:02:59 +0000 (19:02 +0000)
committerpbrook <pbrook>
Tue, 18 Apr 2006 19:02:59 +0000 (19:02 +0000)
hw/pl110.c

index 09352e742fd63fa00cae6496b8dbbc95bd800ac3..ecebe35eb3ee383ab734942588ff489a129a3e35 100644 (file)
@@ -261,7 +261,7 @@ static void pl110_resize(pl110_state *s, int width, int height)
 {
     if (width != s->cols || height != s->rows) {
         if (pl110_enabled(s)) {
-            dpy_resize(s->ds, s->cols, s->rows);
+            dpy_resize(s->ds, width, height);
         }
     }
     s->cols = width;