summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2023-10-09 08:27:32 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2023-10-09 15:45:46 -0400
commit2e70dd019bfd554d05da73da44f37c610e93de29 (patch)
treeba8055c3cc95eda009767313cebf71f685a2a0a7 /include/SSystem
parent387a9bf4caca872264bb73ce35b25c7c551a1f3e (diff)
d_bg_s_acch 70%
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_bg_s_chk.h7
-rw-r--r--include/SSystem/SComponent/c_m3d_g_cir.h2
2 files changed, 7 insertions, 2 deletions
diff --git a/include/SSystem/SComponent/c_bg_s_chk.h b/include/SSystem/SComponent/c_bg_s_chk.h
index e8ffbd45..204eb416 100644
--- a/include/SSystem/SComponent/c_bg_s_chk.h
+++ b/include/SSystem/SComponent/c_bg_s_chk.h
@@ -27,7 +27,12 @@ public:
mGrpPassChk = NULL;
unk_0x0C = 1;
}
- void SetExtChk(cBgS_Chk&);
+ void SetExtChk(cBgS_Chk& other) {
+ mPolyPassChk = other.mPolyPassChk;
+ mGrpPassChk = other.mGrpPassChk;
+ mActorPid = other.mActorPid;
+ unk_0x0C = other.unk_0x0C;
+ }
bool ChkSameActorPid(unsigned int) const;
void SetActorPid(u32 pid) { mActorPid = pid; }
diff --git a/include/SSystem/SComponent/c_m3d_g_cir.h b/include/SSystem/SComponent/c_m3d_g_cir.h
index 24216381..fb0ef9b9 100644
--- a/include/SSystem/SComponent/c_m3d_g_cir.h
+++ b/include/SSystem/SComponent/c_m3d_g_cir.h
@@ -21,7 +21,7 @@ class cM3dGCir : public cM2dGCir {
f32 mPosZ;
public:
- cM3dGCir(void);
+ cM3dGCir(void) {}
virtual ~cM3dGCir(void) {}
void Set(f32, f32, f32, f32);
};