diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 19:03:47 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 19:03:47 -0400 |
| commit | 0dd3f6e47cd372bdf7ea1ea2313bfad80ee4eafe (patch) | |
| tree | f86b73a1401905cde8f58195315365b374ca2db8 /include/SSystem | |
| parent | d0e8844b4bce31b72e38c10c3467f23ac69e4072 (diff) | |
Standardize process ID type to be uint
Diffstat (limited to 'include/SSystem')
| -rw-r--r-- | include/SSystem/SComponent/c_bg_s_chk.h | 6 | ||||
| -rw-r--r-- | include/SSystem/SComponent/c_cc_d.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/SSystem/SComponent/c_bg_s_chk.h b/include/SSystem/SComponent/c_bg_s_chk.h index 11d5dfb9..0158deef 100644 --- a/include/SSystem/SComponent/c_bg_s_chk.h +++ b/include/SSystem/SComponent/c_bg_s_chk.h @@ -17,7 +17,7 @@ class cBgS_Chk { private: /* 0x0 */ cBgS_PolyPassChk* mPolyPassChk; /* 0x4 */ cBgS_GrpPassChk* mGrpPassChk; - /* 0x8 */ u32 mActorPid; + /* 0x8 */ uint mActorPid; /* 0xC */ u8 unk_0x0C; /* 0x10 */ // __vtable__ @@ -35,8 +35,8 @@ public: } bool ChkSameActorPid(uint) const; - void SetActorPid(u32 pid) { mActorPid = pid; } - u32 GetActorPid() const { return mActorPid; } + void SetActorPid(uint pid) { mActorPid = pid; } + uint GetActorPid() const { return mActorPid; } void SetPolyPassChk(cBgS_PolyPassChk* p_chk) { mPolyPassChk = p_chk; } void SetGrpPassChk(cBgS_GrpPassChk* p_chk) { mGrpPassChk = p_chk; } cBgS_PolyPassChk* GetPolyPassChk() const { return mPolyPassChk; } diff --git a/include/SSystem/SComponent/c_cc_d.h b/include/SSystem/SComponent/c_cc_d.h index b17ac208..50bef911 100644 --- a/include/SSystem/SComponent/c_cc_d.h +++ b/include/SSystem/SComponent/c_cc_d.h @@ -353,7 +353,7 @@ class cCcD_Stts { private: /* 0x00 */ cXyz m_cc_move; /* 0x0C */ fopAc_ac_c* mActor; - /* 0x10 */ int mApid; + /* 0x10 */ uint mApid; /* 0x14 */ u8 mWeight; /* 0x15 */ u8 field_0x15; /* 0x16 */ u8 mDmg; |
