aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/font.h
diff options
context:
space:
mode:
authorMarvin Borner2019-10-28 01:06:28 +0100
committerMarvin Borner2019-10-28 01:06:28 +0100
commitff91840abbc9ab421c67dc3aca0de42af22d8219 (patch)
tree2e26e7e67154fbbfccfb9f75af8d4cc21086d420 /src/kernel/graphics/font.h
parent4aa421786c86f0e50ebcc881fb87580e589fc451 (diff)
Added support for more color types (bpp)
Somehow the text is inverted and things are strange but the colors may be correct.
Diffstat (limited to 'src/kernel/graphics/font.h')
-rw-r--r--src/kernel/graphics/font.h3
1 files changed, 2 insertions, 1 deletions
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