aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/renderer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.c b/src/renderer.c
index d587d01..4318610 100644
--- a/src/renderer.c
+++ b/src/renderer.c
@@ -384,7 +384,7 @@ renderer_init(void) {
384 dma_fill(FRONTBUF_TILEMAP, 0, KB(2), 3); 384 dma_fill(FRONTBUF_TILEMAP, 0, KB(2), 3);
385 dma_fill(BACKBUF, 0, KB(20), 3); 385 dma_fill(BACKBUF, 0, KB(20), 3);
386 dma_fill(FONT_DATA, 0, KB(8), 3); 386 dma_fill(FONT_DATA, 0, KB(8), 3);
387 dma_fill(FONT_TILEMAP, FONT_OFFSET, KB(2), 3); 387 dma_fill(FONT_TILEMAP, (FONT_OFFSET << 16) | FONT_OFFSET, KB(2), 3);
388 388
389 // Initialize default palette. 389 // Initialize default palette.
390 PAL_BUFFER_BG[0] = COLOR_BLACK; 390 PAL_BUFFER_BG[0] = COLOR_BLACK;