From 0dd3f6e47cd372bdf7ea1ea2313bfad80ee4eafe Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Mon, 11 Mar 2024 19:03:47 -0400 Subject: Standardize process ID type to be uint --- include/SSystem/SComponent/c_bg_s_chk.h | 6 +++--- include/SSystem/SComponent/c_cc_d.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include/SSystem') 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; -- cgit v1.2.3