diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-08-16 08:34:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 08:34:55 +0100 |
commit | 168950d7e03129c23ddce331593823d1d48411cf (patch) | |
tree | eb0753d70cca0a010b552b45ab384b1ccb98a180 /include/font.h | |
parent | a6b9c13d97e130e43c774f81c383ad452811ef75 (diff) | |
parent | e1a3782f3cac045ea8f8a21869f17608479c5bdb (diff) |
Merge pull request #447 from PikalaxALT/pikalax_work
unk_02021590
Diffstat (limited to 'include/font.h')
-rw-r--r-- | include/font.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/font.h b/include/font.h index 963e36bc..3c0f4267 100644 --- a/include/font.h +++ b/include/font.h @@ -4,28 +4,33 @@ #include "global.h" #include "text.h" -struct UnkStruct_02002C14 +struct UnkStruct_02002C14_sub { const char buf[0x80]; u8 width; u8 height; +}; + +struct UnkStruct_02002C14 +{ + struct UnkStruct_02002C14_sub unk00; void *unk84[4]; - struct UnkStruct_0202199C *unk94[4]; + struct FontData *unk94[4]; }; extern struct UnkStruct_02002C14 *UNK_02106FC8; void FUN_02002C14(); -void FUN_02002C50(u32 param0, u32 param1); +void FUN_02002C50(u32 font_id, u32 heap_id); void FUN_02002C84(s32 param0, u32 param1); void FUN_02002CC0(s32 param0); void FUN_02002CF8(int param0); -struct UnkStruct_02002C14 *FUN_02002D94(u32 param0, u32 param1); +struct UnkStruct_02002C14_sub *FUN_02002D94(u32 param0, u32 param1); u32 FontFunc(u32 fontId, struct TextPrinter *printer); u32 FUN_02002DE0(u32 param0, u16 *str, u32 param2); u32 FUN_02002E14(u32 param0, struct String *str, u32 param2); s32 GetFontAttribute(u8 fontId, s32 attr); -void FUN_02002ED0(u32 layer, u32 baseAddr, u32 heap_id); +void FUN_02002ED0(enum GFBgLayer layer, u32 baseAddr, u32 heap_id); void FUN_02002EEC(u32 layer, u32 baseAddr, u32 heap_id); s32 FUN_02002F08(u32 param0, struct String *str, u32 param2); u32 FUN_02002F40(u32 param0, struct String *str, u32 param2, u32 param3); |