diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-06-01 20:40:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 20:40:37 +0100 |
commit | 389b33f7d8499cab5b3b9e2ba21d786b1059c059 (patch) | |
tree | f02042907a117ce618b0a67c0b5cd82fc45cfcd7 /arm9/src/text.c | |
parent | 5a73f4f645faf368cf8e20cfe4793e2b12672472 (diff) | |
parent | f67d6fe193eeee8058a45934d08c3b883cc08eb9 (diff) |
Merge branch 'master' into unkk_020851B8
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; |