From: David Herrmann Date: Wed, 30 May 2012 16:52:20 +0000 (+0200) Subject: console: reset font color to white by default X-Git-Tag: kmscon-7~889 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f311a506ddf51770d9a4831275e8ba43d0db8db8;p=platform%2Fupstream%2Fkmscon.git 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 --- 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; }