diff options
Diffstat (limited to 'stage3/font.c')
-rw-r--r-- | stage3/font.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stage3/font.c b/stage3/font.c index e982aec..43f2f02 100644 --- a/stage3/font.c +++ b/stage3/font.c @@ -49,8 +49,10 @@ static void fix_cursor() cursor_y++; } - while (cursor_y >= screen_height) + while (cursor_y >= screen_height) { + gfx_set_area(0, 0, gfx_info->width, gfx_info->height, 0xFF000000); cursor_y -= screen_height; + } } void print_char(char c) |