From: John Hodge Date: Tue, 22 Sep 2009 13:26:09 +0000 (+0800) Subject: Added full ANSI colour range X-Git-Tag: rel0.06~533 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=73cd7e192fd21be9366b7368126dec86a6026800;p=tpg%2Facess2.git Added full ANSI colour range --- diff --git a/Kernel/drv/vterm.c b/Kernel/drv/vterm.c index d945bda3..e3e78132 100644 --- a/Kernel/drv/vterm.c +++ b/Kernel/drv/vterm.c @@ -62,8 +62,8 @@ void VT_int_UpdateScreen( tVTerm *Term, int UpdateAll ); // === CONSTANTS === const Uint16 caVT100Colours[] = { - VT_COL_BLACK, 0, 0, 0, 0, 0, 0, VT_COL_LTGREY, - VT_COL_GREY, 0, 0, 0, 0, 0, 0, VT_COL_WHITE + VT_COL_BLACK, 0x700, 0x070, 0x770, 0x007, 0x707, 0x077, VT_COL_LTGREY, + VT_COL_GREY, 0xF00, 0x0F0, 0xFF0, 0x00F, 0xF0F, 0x0FF, VT_COL_WHITE }; // === GLOBALS ===