diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-18 19:02:59 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-18 19:02:59 +0000 |
commit | 132ea32fae4857b518475f8cded52f5ace56a399 (patch) | |
tree | 6549d72e6e6752163ed1573048bf99dbdc3da83a /hw/pl110.c | |
parent | d7ce493a38680aeb9283129cf4f4ea576da62997 (diff) |
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.c | 2 |
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; |