diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-29 11:17:47 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-29 11:17:47 -0400 |
commit | fea86c63479708926cce890f65cf7c9217f6fc4c (patch) | |
tree | fbeaa84706a7e6354163c80b9311f796ec111cc7 /arm9/src/text.c | |
parent | 1521f64f6f055c9fd236a9e2c72ffe3860c5eb14 (diff) |
Name funcs in gf_gfx_loader
Diffstat (limited to 'arm9/src/text.c')
-rw-r--r-- | arm9/src/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/src/text.c b/arm9/src/text.c index 8676cbcc..36349b8b 100644 --- a/arm9/src/text.c +++ b/arm9/src/text.c @@ -21,7 +21,7 @@ extern void FUN_0201C1A8(struct TextPrinter *printer); extern u32 FontFunc(u8 fontId, struct TextPrinter *printer); -extern void * FUN_02006BB0(NarcId, s32, s32, struct UnkStruct_0200B870_sub **, u32); +extern void * GfGfxLoader_GetCharData(NarcId, s32, s32, struct UnkStruct_0200B870_sub **, u32); THUMB_FUNC void SetFontsPointer(const struct FontInfo *fonts) @@ -330,7 +330,7 @@ THUMB_FUNC u16 *FUN_0201C1B0(void) { void *res = AllocFromHeap(0, 32 * 24 * sizeof(u16)); struct UnkStruct_0200B870_sub * var; - void *tmp = FUN_02006BB0(NARC_GRAPHIC_FONT, 5, 0, &var, 0); + void *tmp = GfGfxLoader_GetCharData(NARC_GRAPHIC_FONT, 5, 0, &var, 0); MI_CpuCopy32(var->unk_14, res, 32 * 24 * sizeof(u16)); FreeToHeap(tmp); return res; |