From 132ea32fae4857b518475f8cded52f5ace56a399 Mon Sep 17 00:00:00 2001 From: pbrook Date: Tue, 18 Apr 2006 19:02:59 +0000 Subject: [PATCH] Fix display resize bug. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1825 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/pl110.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pl110.c b/hw/pl110.c index 09352e742f..ecebe35eb3 100644 --- a/hw/pl110.c +++ b/hw/pl110.c @@ -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; -- 2.11.4.GIT