diff options
author | Marvin Borner | 2020-01-26 18:38:36 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-26 18:38:36 +0100 |
commit | bb2a6b4d93512e8afc1b1999eb58f1f506cc27ae (patch) | |
tree | ea30b53ac6043faddd1cdb2fdea17f37178b1cc7 /src/kernel/graphics/font.h | |
parent | b8630d78a15a69f50dac747e41e84b143dd99b08 (diff) |
Magic commit
Some things work, others don't.
Diffstat (limited to 'src/kernel/graphics/font.h')
-rw-r--r-- | src/kernel/graphics/font.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/kernel/graphics/font.h b/src/kernel/graphics/font.h deleted file mode 100644 index 7778979..0000000 --- a/src/kernel/graphics/font.h +++ /dev/null @@ -1,19 +0,0 @@ -// Generated using the Spleen font and the bdf2c converter (modified using the conv.sh script) -// Spleen font: (c) 2018-2019, Frederic Cambus, License: MIT -// bdf2c: (c) 2009-2010 Lutz Sammer, License: AGPLv3 - -#ifndef MELVIX_FONT_H -#define MELVIX_FONT_H - -#include <stdint.h> - -struct font *font; - -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 |