diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2022-02-06 06:23:54 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-06 09:23:54 -0500 |
| commit | 3a79e96e8b033e26a3970da68d0633010fac0f03 (patch) | |
| tree | 4f96139d922bc2af03685bca121fb327723447f2 /include/f_pc | |
| parent | 612f26c132280da43ecfa5fa8c8cc32966f06eb6 (diff) | |
d_meter2 wip / d_s_play / d_file_sel_info (#179)
* d_meter2 wip
* d_s_play
* d_file_sel_info
* format
* tag_lv5soup / tag_setBall / fix dKyeff
* d_cc_uty
Diffstat (limited to 'include/f_pc')
| -rw-r--r-- | include/f_pc/f_pc_leaf.h | 3 | ||||
| -rw-r--r-- | include/f_pc/f_pc_priority.h | 2 | ||||
| -rw-r--r-- | include/f_pc/f_pc_profile.h | 6 |
3 files changed, 7 insertions, 4 deletions
diff --git a/include/f_pc/f_pc_leaf.h b/include/f_pc/f_pc_leaf.h index 485a6131e2..04be9bfe10 100644 --- a/include/f_pc/f_pc_leaf.h +++ b/include/f_pc/f_pc_leaf.h @@ -25,7 +25,7 @@ typedef struct leaf_process_profile_definition { /* 0x1C */ leafdraw_method_class* mLfDrwMth; /* 0x20 */ s16 mPriority; /* 0x22 */ u8 unk22[2]; - /* 0x24 */ s32 unk24; + /* 0x24 */ leafdraw_method_class* mMethods; } leaf_process_profile_definition; s32 fpcLf_GetPriority(const leafdraw_class* pLeaf); @@ -37,5 +37,6 @@ s32 fpcLf_Delete(leafdraw_class* pLeaf); s32 fpcLf_Create(leafdraw_class* pLeaf); extern int g_fpcLf_type; +extern leafdraw_method_class g_fpcLf_Method; #endif diff --git a/include/f_pc/f_pc_priority.h b/include/f_pc/f_pc_priority.h index 81d799eeeb..6ad4f0d048 100644 --- a/include/f_pc/f_pc_priority.h +++ b/include/f_pc/f_pc_priority.h @@ -29,4 +29,6 @@ s32 fpcPi_Handler(void); s32 fpcPi_Init(process_priority_class* pPi, void* pUserData, unsigned int layer, u16 listID, u16 priority); +extern s8 data_804505F0; // roomReadId + #endif diff --git a/include/f_pc/f_pc_profile.h b/include/f_pc/f_pc_profile.h index a393e00728..12a2c6e361 100644 --- a/include/f_pc/f_pc_profile.h +++ b/include/f_pc/f_pc_profile.h @@ -21,8 +21,8 @@ typedef struct process_profile_definition { #define LAYER_DEFAULT (-2) -process_profile_definition* fpcPf_Get(s16 profileID); - -extern process_profile_definition** g_fpcPf_ProfileList_p; +struct leaf_process_profile_definition; +leaf_process_profile_definition* fpcPf_Get(s16 profileID); +extern leaf_process_profile_definition** g_fpcPf_ProfileList_p; #endif |
