summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_obj_smplbg.h
diff options
context:
space:
mode:
authorZeclos <Zeclos99@gmail.com>2026-03-04 19:25:59 +0100
committerGitHub <noreply@github.com>2026-03-04 13:25:59 -0500
commitdcf4862387fb9be67f7aff9fe4f986d129366662 (patch)
tree4f50bd214b8bf29f95526f9d7a7c951242b6d9e8 /include/d/actor/d_a_obj_smplbg.h
parentd54d983a4a7433f97f92b9e162cea5972dac6165 (diff)
D_a_npc_tc matching for retail (#930)
* progress * code matching non-demo * cleanup for d_a_npc_tc and d_a_obj_smplbg
Diffstat (limited to 'include/d/actor/d_a_obj_smplbg.h')
-rw-r--r--include/d/actor/d_a_obj_smplbg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/d/actor/d_a_obj_smplbg.h b/include/d/actor/d_a_obj_smplbg.h
index 138e7113..9fee2147 100644
--- a/include/d/actor/d_a_obj_smplbg.h
+++ b/include/d/actor/d_a_obj_smplbg.h
@@ -33,9 +33,9 @@ namespace daObjSmplbg {
static const Attr_c M_attr[];
inline const Attr_c& attr() const { return M_attr[mType]; }
- void isStop() {}
- void offStop() {}
- void onStop() {}
+ bool isStop() { return mIsStop; }
+ void offStop() { mIsStop = false; }
+ void onStop() { mIsStop = true; }
int prm_get_type() const { return daObj::PrmAbstract(this, PRM_TYPE_W , PRM_TYPE_S);}
virtual BOOL CreateHeap();
@@ -53,7 +53,7 @@ namespace daObjSmplbg {
/* 0x2C8 */ request_of_phase_process_class mPhs;
/* 0x2D0 */ J3DModel* mpModel;
/* 0x2D4 */ int mType;
- /* 0x2D8 */ u8 field_0x2D8;
+ /* 0x2D8 */ bool mIsStop;
/* 0x2D9 */ u8 field_0x2D9[0x2DC - 0x2D9];
}; // Size: 0x2DC
};