Fix IslePathActor dtor

This commit is contained in:
Christian Semmler 2024-01-13 17:16:28 -05:00
parent 05208d9239
commit 3759f762fa
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,7 @@ class IslePathActor : public LegoPathActor {
}
virtual MxResult Create(MxDSObject& p_dsObject) override; // vtable+0x18
virtual void Destroy(MxBool p_fromDestructor) override; // vtable+0x1c
// FUNCTION: LEGO1 0x10002e70
virtual MxU32 VTable0xcc() { return 0; } // vtable+0xcc
// FUNCTION: LEGO1 0x10002df0

View File

@ -17,6 +17,13 @@ MxResult IslePathActor::Create(MxDSObject& p_dsObject)
return MxEntity::Create(p_dsObject);
}
// FUNCTION: LEGO1 0x1001a2a0
void IslePathActor::Destroy(MxBool p_fromDestructor)
{
if (!p_fromDestructor)
LegoPathActor::Destroy(FALSE);
}
// STUB: LEGO1 0x1001a350
void IslePathActor::VTable0xe0()
{