From 73cd7e192fd21be9366b7368126dec86a6026800 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Tue, 22 Sep 2009 21:26:09 +0800 Subject: [PATCH] Added full ANSI colour range --- Kernel/drv/vterm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 === -- 2.20.1