From de2f84f733776b19c0adecbfc8b31ea88f7b6291 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 30 Nov 2019 13:20:57 +0100 Subject: Yeeha fixed font installation! --- src/kernel/graphics/font.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'src/kernel/graphics/font.h') 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 -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 -- cgit v1.2.3