diff options
| author | Pheenoh <pheenoh@gmail.com> | 2023-03-07 18:03:46 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-07 18:03:46 -0700 |
| commit | f31ab5ae0be3de6e0910b2d5942e33458be043ac (patch) | |
| tree | 4fbfdeda4e8bfac575a81ab9d4eaa79530ea35c5 /include/f_pc | |
| parent | 6c2e18af70dcc392b49cacf77fdb6ff8a164c0a5 (diff) | |
Misc Changes (#306)
Diffstat (limited to 'include/f_pc')
| -rw-r--r-- | include/f_pc/f_pc_base.h | 2 | ||||
| -rw-r--r-- | include/f_pc/f_pc_node.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/f_pc/f_pc_base.h b/include/f_pc/f_pc_base.h index baed3a5d7a..e8719e83f0 100644 --- a/include/f_pc/f_pc_base.h +++ b/include/f_pc/f_pc_base.h @@ -35,7 +35,7 @@ typedef struct base_process_class { /* 0xB4 */ u32 mSubType; } base_process_class; // Size: 0xB8 -BOOL fpcBs_Is_JustOfType(int pType1, int pType2); +s32 fpcBs_Is_JustOfType(int pType1, int pType2); s32 fpcBs_MakeOfType(int* pType); s32 fpcBs_MakeOfId(void); s32 fpcBs_Execute(base_process_class* pProc); diff --git a/include/f_pc/f_pc_node.h b/include/f_pc/f_pc_node.h index 0043e7c4f7..fa92560fd6 100644 --- a/include/f_pc/f_pc_node.h +++ b/include/f_pc/f_pc_node.h @@ -34,5 +34,6 @@ s32 fpcNd_Delete(process_node_class* pProcNode); s32 fpcNd_Create(process_node_class* pProcNode); extern int g_fpcNd_type; +extern nodedraw_method_class g_fpcNd_Method; #endif |
