aboutsummaryrefslogtreecommitdiffstats
path: root/src/text/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/text/text.h')
-rw-r--r--src/text/text.h4
1 files changed, 2 insertions, 2 deletions
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 @@
4#include "posprintf.h" 4#include "posprintf.h"
5#include "renderer.h" 5#include "renderer.h"
6 6
7#include "bd-font.c" 7#include "font.h"
8 8
9typedef struct TextEngine { 9typedef struct TextEngine {
10 // Cursor for tiled text mode The X and Y positions correspond to the tile 10 // Cursor for tiled text mode The X and Y positions correspond to the tile
@@ -30,7 +30,7 @@ static inline
30void 30void
31txt_init(u32 *font_data, u16 *font_tilemap, u16 font_offset) { 31txt_init(u32 *font_data, u16 *font_tilemap, u16 font_offset) {
32 // Load font data into VRAM. 32 // Load font data into VRAM.
33 unpack_tiles(&bd_font, font_data, 256); 33 unpack_tiles(&font, font_data, 256);
34 34
35 // Initialize the font map translation table. That way we can write 35 // Initialize the font map translation table. That way we can write
36 // a character on the text background layer with: 36 // a character on the text background layer with: