aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/graphics/font.h')
-rw-r--r--src/kernel/graphics/font.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/kernel/graphics/font.h b/src/kernel/graphics/font.h
index 819f882..7778979 100644
--- a/src/kernel/graphics/font.h
+++ b/src/kernel/graphics/font.h
@@ -7,16 +7,13 @@
#include <stdint.h>
-uint16_t cursor[19] = {
-};
-
-uint8_t font_16[758][16] = {
-};
-
-uint16_t font_24[758][24] = {
-};
+struct font *font;
-uint16_t font_32[758][32] = {
+struct font {
+ uint16_t font_32[758][32];
+ uint16_t font_24[758][24];
+ uint8_t font_16[758][16];
+ uint16_t cursor[19];
};
#endif