From 95292027625e905080f37f585402f49ec49bc97f Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 22 Jul 2017 09:14:51 +0200 Subject: moved color handling to video driver from generic VGA driver --- src/gui/widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui/widget.c') diff --git a/src/gui/widget.c b/src/gui/widget.c index 58b03ef..70e0dbc 100644 --- a/src/gui/widget.c +++ b/src/gui/widget.c @@ -15,7 +15,7 @@ static widget_vtable_t const widget_vtable = { widget_on_key_up }; -void widget_init( widget_t *widget, widget_t *parent, const int x, const int y, const int w, const int h, const vga_color_t background_color ) +void widget_init( widget_t *widget, widget_t *parent, const int x, const int y, const int w, const int h, const video_rgb_color_t background_color ) { memset( widget, 0, sizeof( widget_t ) ); -- cgit v1.2.3-54-g00ecf