From df32deb2e40c1bddf2441d4681486b8b2e3fc004 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Mon, 7 Jun 2021 19:27:34 +0200 Subject: Change font used to a custom mixed font --- src/text/text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/text/text.h') diff --git a/src/text/text.h b/src/text/text.h index 3b7921d..01dddb0 100644 --- a/src/text/text.h +++ b/src/text/text.h @@ -4,7 +4,7 @@ #include "posprintf.h" #include "renderer.h" -#include "bd-font.c" +#include "font.h" typedef struct TextEngine { // Cursor for tiled text mode The X and Y positions correspond to the tile @@ -30,7 +30,7 @@ static inline void txt_init(u32 *font_data, u16 *font_tilemap, u16 font_offset) { // Load font data into VRAM. - unpack_tiles(&bd_font, font_data, 256); + unpack_tiles(&font, font_data, 256); // Initialize the font map translation table. That way we can write // a character on the text background layer with: -- cgit v1.2.1