diff options
Diffstat (limited to 'stage3/font.c')
-rw-r--r-- | stage3/font.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/stage3/font.c b/stage3/font.c index 31b771e..f47c9c9 100644 --- a/stage3/font.c +++ b/stage3/font.c @@ -3,6 +3,7 @@ #include "gfx.h" #include "heap.h" #include "memory.h" +#include "font_builtin.c" // important: must be a multiple of 2, else code won't work #define TAB_SIZE 4 @@ -40,6 +41,11 @@ void font_load_blob(const void *blob) memcpy(font, blob, 256*16); } +void font_load_builtin() +{ + memcpy(font, fs_fonts_ter_u16n_cuddlefont, 256*16); +} + void font_load_classic() { memset(font, 0, 256 * 16); |