diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-05-31 23:37:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-31 23:37:21 +0100 |
commit | 901807cd6f693ffa9941ddd167ef0ad9a5cf3d51 (patch) | |
tree | fe0b64d8a1f4545690d5c9088b31c84553b61a91 /arm9/src/text.c | |
parent | 5fb5906a0eb46382ba540660da560fad4400988b (diff) | |
parent | cf0a465d2cd604c0d44a64adfe938551ba5e3800 (diff) |
Merge pull request #392 from PikalaxALT/pikalax_work
Decompile gf_gfx_loader.c
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; |