summaryrefslogtreecommitdiff
path: root/include/SSystem/SComponent/c_bg_s_chk.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/SSystem/SComponent/c_bg_s_chk.h')
-rw-r--r--include/SSystem/SComponent/c_bg_s_chk.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/SSystem/SComponent/c_bg_s_chk.h b/include/SSystem/SComponent/c_bg_s_chk.h
index d56dd19c67..98d22fe790 100644
--- a/include/SSystem/SComponent/c_bg_s_chk.h
+++ b/include/SSystem/SComponent/c_bg_s_chk.h
@@ -2,6 +2,7 @@
#define C_BG_S_CHK_H
#include "dolphin/mtx/vec.h"
+#include "f_pc/f_pc_base.h"
struct cBgD_Vtx_t : public Vec {};
@@ -16,7 +17,7 @@ class cBgS_Chk {
public:
/* 0x0 */ cBgS_PolyPassChk* mPolyPassChk;
/* 0x4 */ cBgS_GrpPassChk* mGrpPassChk;
- /* 0x8 */ u32 mActorPid;
+ /* 0x8 */ fpc_ProcID mActorPid;
/* 0xC */ u8 unk_0x0C;
/* 0x10 */ // __vtable__
@@ -25,8 +26,8 @@ public:
void SetExtChk(cBgS_Chk&);
bool ChkSameActorPid(unsigned int) const;
- void SetActorPid(u32 pid) { mActorPid = pid; }
- u32 GetActorPid() const { return mActorPid; }
+ void SetActorPid(fpc_ProcID pid) { mActorPid = pid; }
+ fpc_ProcID 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; }