match d_a_obj_desert_debris

This commit is contained in:
Swekka
2025-07-08 17:35:58 +02:00
parent 87f84f0a68
commit 1410e4249f
3 changed files with 4 additions and 4 deletions
@@ -7,7 +7,7 @@ create__18dAcOdesertDebris_cFv = .text:0x00000200; // type:function size:0xF0
doDelete__18dAcOdesertDebris_cFv = .text:0x000002F0; // type:function size:0x38
actorExecute__18dAcOdesertDebris_cFv = .text:0x00000330; // type:function size:0x40
draw__18dAcOdesertDebris_cFv = .text:0x00000370; // type:function size:0x28
checkStoryFlag__18dAcOdesertDebris_cFv = .text:0x000003A0; // type:function size:0x5C
checkStoryFlag__18dAcOdesertDebris_cCFv = .text:0x000003A0; // type:function size:0x5C
__dt__18dAcOdesertDebris_cFv = .text:0x00000400; // type:function size:0x74
_ctors = .ctors:0x00000000; // type:label scope:global
_dtors = .dtors:0x00000000; // type:label scope:global
+2 -2
View File
@@ -17,9 +17,9 @@ public:
virtual int actorExecute() override;
virtual int draw() override;
bool checkStoryFlag();
private:
bool checkStoryFlag() const;
nw4r::g3d::ResFile mResFile;
m3d::smdl_c mMdl;
dBgW mBgW;
+1 -1
View File
@@ -59,6 +59,6 @@ int dAcOdesertDebris_c::draw() {
return SUCCEEDED;
}
bool dAcOdesertDebris_c::checkStoryFlag() {
bool dAcOdesertDebris_c::checkStoryFlag() const {
return mStoryFlag < 0x7FF && StoryflagManager::sInstance->getCounterOrFlag(mStoryFlag);
}