Convert fonts.s to C

This commit is contained in:
GriffinR
2021-10-31 01:44:18 -04:00
parent fdaf436960
commit 36039e1b86
28 changed files with 336 additions and 384 deletions

View File

@@ -4,9 +4,12 @@
#include "text.h"
#include "sound.h"
// This file handles the braille font.
// For printing braille messages, see ScrCmd_braillemessage
ALIGNED(4)
static const u8 sScrollDistances[] = {1, 2, 4};
static const u16 sFont_Braille[] = INCBIN_U16("graphics/fonts/braille_glyphs.fwjpnfont");
static const u16 sFont_Braille[] = INCBIN_U16("graphics/fonts/braille.fwjpnfont");
static void DecompressGlyph_Braille(u16);