From f311a506ddf51770d9a4831275e8ba43d0db8db8 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Wed, 30 May 2012 18:52:20 +0200 Subject: [PATCH] console: reset font color to white by default Reset font color to white for new cells. This allows us to draw reversed cells that are not occupied by any value. Otherwise, these cells would be still black if reversed. Signed-off-by: David Herrmann --- src/console.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/console.c b/src/console.c index ebc67b9..30d4f06 100644 --- a/src/console.c +++ b/src/console.c @@ -164,6 +164,9 @@ static int init_cell(struct cell *cell) return -EINVAL; memset(cell, 0, sizeof(*cell)); + cell->attr.fr = 255; + cell->attr.fg = 255; + cell->attr.fb = 255; return 0; }