summary refs log tree commit diff stats
path: root/hw/pl110.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-18 19:02:59 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-18 19:02:59 +0000
commit132ea32fae4857b518475f8cded52f5ace56a399 (patch)
tree6549d72e6e6752163ed1573048bf99dbdc3da83a /hw/pl110.c
parentd7ce493a38680aeb9283129cf4f4ea576da62997 (diff)
downloadfocaccia-qemu-132ea32fae4857b518475f8cded52f5ace56a399.tar.gz
focaccia-qemu-132ea32fae4857b518475f8cded52f5ace56a399.zip
Fix display resize bug.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1825 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pl110.c')
-rw-r--r--hw/pl110.c2
1 files changed, 1 insertions, 1 deletions
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;