diff options
author | Marvin Borner | 2019-11-30 13:20:57 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-30 13:20:57 +0100 |
commit | de2f84f733776b19c0adecbfc8b31ea88f7b6291 (patch) | |
tree | ddbe09554a056eba4a470041c9e3d74ddd64ff8a /src/kernel/graphics/font.h | |
parent | 4ada94d4db995ebf150dd3ecfc8efd3241a6ff84 (diff) |
Yeeha fixed font installation!
Diffstat (limited to 'src/kernel/graphics/font.h')
-rw-r--r-- | src/kernel/graphics/font.h | 15 |
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 |