From 3294c81695aedef0b59610fe4e0f0cd22f74d67c Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 24 Jun 2017 13:25:29 +0200 Subject: started to make some things in graphical VGA driver faster --- src/gui/desktop.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gui') diff --git a/src/gui/desktop.c b/src/gui/desktop.c index ee4a6e5..506bf4d 100644 --- a/src/gui/desktop.c +++ b/src/gui/desktop.c @@ -37,6 +37,10 @@ void desktop_draw( void *obj, graphics_context_t *context ) ((widget_vtable_t *)(desktop->base.vtable))->draw( obj, context ); + vga_draw_char( context, 'D', desktop->base.base.x, + desktop->base.base.y, desktop->base.base.background_color, + VGA_COLOR_WHITE ); + // TODO: use a mouse bitmap and copy it /* for( int i = 0; i < 4; i++ ) { -- cgit v1.2.3-54-g00ecf