Terminal: fix color variable initialization

This commit is contained in:
Josef Söntgen 2012-11-20 14:54:41 +01:00 committed by Norman Feske
parent 42df6e3d01
commit 9ce32d6414
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ struct Char_cell
enum { COLOR_MASK = 0x3f }; /* 111111 */
Char_cell() : attr(0), ascii(0) { }
Char_cell() : attr(0), ascii(0), color(0) { }
Char_cell(unsigned char c, Font_family::Face f,
int colidx, bool inv, bool highlight)