This fixes a fault with the jazz_led since it has two graphic consoles.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6353
c046a42c-6fe2-441c-8c8c-
71466251a162
}
}
-static TextConsole *get_graphic_console(void)
+static TextConsole *get_graphic_console(DisplayState *ds)
{
int i;
TextConsole *s;
for (i = 0; i < nb_consoles; i++) {
s = consoles[i];
- if (s->console_type == GRAPHIC_CONSOLE)
+ if (s->console_type == GRAPHIC_CONSOLE && s->ds == ds)
return s;
}
return NULL;
void qemu_console_resize(DisplayState *ds, int width, int height)
{
- TextConsole *s = get_graphic_console();
+ TextConsole *s = get_graphic_console(ds);
s->g_width = width;
s->g_height = height;
if (is_graphic_console()) {