From 5e70e5202a967f17eecfbafd997b9e09303069dd Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 29 May 2008 17:38:49 +0100 Subject: [PATCH] add size string parameter to text_console_init - currently ignored by our fork of the code :-/ --- console.c | 2 +- console.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/console.c b/console.c index f2bf4e02..ba5d0deb 100644 --- a/console.c +++ b/console.c @@ -1166,7 +1166,7 @@ void set_color_table(DisplayState *ds) } } -CharDriverState *text_console_init(DisplayState *ds) +CharDriverState *text_console_init(DisplayState *ds, const char *p) { CharDriverState *chr; TextConsole *s; diff --git a/console.h b/console.h index d3fd91b9..63e9953e 100644 --- a/console.h +++ b/console.h @@ -113,7 +113,7 @@ void vga_hw_invalidate(void); void vga_hw_screen_dump(const char *filename); int is_graphic_console(void); -CharDriverState *text_console_init(DisplayState *ds); +CharDriverState *text_console_init(DisplayState *ds, const char *p); void console_select(unsigned int index); void set_color_table(DisplayState *ds); -- 2.39.5