diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2024-05-12 16:04:01 -0400 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2024-05-12 16:04:01 -0400 |
| commit | 62e0778390f838cdb92f16b3582e2d76299ae8a5 (patch) | |
| tree | 56f654268089544b7d3625b4cf60fc9fb087be97 /include/f | |
| parent | 94ec354dde88a3e5e9f3f5b23f3506f83f0beb80 (diff) | |
fixed up typedef for u32 and s32 from mistake long ago
Diffstat (limited to 'include/f')
| -rw-r--r-- | include/f/f_base.h | 11 | ||||
| -rw-r--r-- | include/f/f_manager.h | 2 |
2 files changed, 5 insertions, 8 deletions
diff --git a/include/f/f_base.h b/include/f/f_base.h index 2db49895..5f172af2 100644 --- a/include/f/f_base.h +++ b/include/f/f_base.h @@ -126,13 +126,10 @@ public: /* 802e2510 */ bool checkChildProcessCreateState() const; public: - /* 802e2540 */ static void setTmpCtData(ProfileName profName, fTrNdBa_c *connectParent, unsigned long param, - u8 groupType); - /* 802e2560 */ static fBase_c *fBase_make(ProfileName profName, fTrNdBa_c *connectParent, unsigned long param, - u8 groupType); - /* 802e2640 */ static fBase_c *createRoot(ProfileName profName, unsigned long param, u8 groupType); - /* 802e2600 */ static fBase_c *createChild(ProfileName profName, fBase_c *parent, unsigned long param, - u8 groupType); + /* 802e2540 */ static void setTmpCtData(ProfileName profName, fTrNdBa_c *connectParent, u32 param, u8 groupType); + /* 802e2560 */ static fBase_c *fBase_make(ProfileName profName, fTrNdBa_c *connectParent, u32 param, u8 groupType); + /* 802e2640 */ static fBase_c *createRoot(ProfileName profName, u32 param, u8 groupType); + /* 802e2600 */ static fBase_c *createChild(ProfileName profName, fBase_c *parent, u32 param, u8 groupType); public: /* 80575ba8 */ static fLiMgBa_c m_forceExecuteList; diff --git a/include/f/f_manager.h b/include/f/f_manager.h index d9dca6e7..d54f9acf 100644 --- a/include/f/f_manager.h +++ b/include/f/f_manager.h @@ -32,7 +32,7 @@ public: /* 802e28c0 */ int getSearchTableNum(); /* 802e28d0 */ static fBase_c *searchBaseByID(fBaseID_e id); /* 802e2920 */ static fBase_c *searchBaseByProfName(ProfileName profID, const fBase_c *parent); - /* 802e2980 */ static fBase_c *searchBaseByGroupType(unsigned char groupType, const fBase_c *parent); + /* 802e2980 */ static fBase_c *searchBaseByGroupType(u8 groupType, const fBase_c *parent); /* 802e29e0 */ static void mainLoop(); private: |
