diff options
author | yenatch <yenatch@gmail.com> | 2017-07-05 17:48:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 17:48:21 -0400 |
commit | 124e2eb02c4adc46265e5b34b47ac0c625a24ec3 (patch) | |
tree | 5c0af98d9e49a767f455fff1ceec5d07cb8539b8 /src/text.c | |
parent | 123d5cc8b26d2a93fa3981beaccb84377c6ae20f (diff) | |
parent | 813c1846c94fa14b55bf75cf4c14465f1fb26635 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/text.c b/src/text.c index 02cafea48..b27084b86 100644 --- a/src/text.c +++ b/src/text.c @@ -218,12 +218,14 @@ static const u8 sFont1JapaneseGlyphs[] = INCBIN_U8("graphics/fonts/font1_jpn.1bp static const u8 sBrailleGlyphs[] = INCBIN_U8("graphics/fonts/font6_braille.1bpp"); static const u32 sDownArrowTiles[] = INCBIN_U32("graphics/fonts/down_arrow.4bpp"); -#include "fonts/type1_map.h" -#include "fonts/type3_map.h" -#include "fonts/font1_widths.h" -#include "fonts/font4_widths.h" -#include "fonts/font0_widths.h" -#include "fonts/font3_widths.h" +// clang-format off +#include "data/text/type1_map.h" +#include "data/text/type3_map.h" +#include "data/text/font1_widths.h" +#include "data/text/font4_widths.h" +#include "data/text/font0_widths.h" +#include "data/text/font3_widths.h" +// clang-format on const u16 gUnknownPalette_81E6692[] = INCBIN_U16("graphics/fonts/unknown_81E6692.gbapal"); const u16 gFontDefaultPalette[] = INCBIN_U16("graphics/fonts/default.gbapal"); |