From ff91840abbc9ab421c67dc3aca0de42af22d8219 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 28 Oct 2019 01:06:28 +0100 Subject: Added support for more color types (bpp) Somehow the text is inverted and things are strange but the colors may be correct. --- src/kernel/graphics/font.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/kernel/graphics/font.h') diff --git a/src/kernel/graphics/font.h b/src/kernel/graphics/font.h index 47e87d5..21f8679 100644 --- a/src/kernel/graphics/font.h +++ b/src/kernel/graphics/font.h @@ -96,6 +96,7 @@ unsigned char font[95][13] = { {0x00, 0x00, 0x0f, 0x18, 0x18, 0x18, 0x38, 0xf0, 0x38, 0x18, 0x18, 0x18, 0x0f}, {0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18}, {0x00, 0x00, 0xf0, 0x18, 0x18, 0x18, 0x1c, 0x0f, 0x1c, 0x18, 0x18, 0x18, 0xf0}, - {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x8f, 0xf1, 0x60, 0x00, 0x00, 0x00}}; + {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x8f, 0xf1, 0x60, 0x00, 0x00, 0x00} +}; #endif -- cgit v1.2.3