diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-10-09 17:32:58 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-10-09 17:32:58 +0000 |
commit | 8e3a9fd28059821f819295fe9178435990141924 (patch) | |
tree | b8221894d10d2f398990f58e18f029bdceedad55 /console.c | |
parent | d75d9f6be958f0245ed7794bbd2a31eaffae40da (diff) |
monitor fixes (Johannes Schindelin)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1109 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -570,8 +570,11 @@ void console_select(unsigned int index) active_console = s; if (s->text_console) { if (s->g_width != s->ds->width || - s->g_height != s->ds->height) + s->g_height != s->ds->height) { + s->g_width = s->ds->width; + s->g_height = s->ds->height; text_console_resize(s); + } console_refresh(s); } } |