More rename fixes

This commit is contained in:
Christian Semmler 2023-10-13 12:40:22 -04:00
parent dfea153641
commit 582888849c
6 changed files with 6 additions and 7 deletions

View File

@ -46,7 +46,7 @@ MxResult LegoEntity::InitFromMxDSObject(MxDSObject& p_object)
}
// OFFSET: LEGO1 0x10010810 STUB
void LegoEntity::Destroy(MxBool)
void LegoEntity::Destroy(MxBool p_fromDestructor)
{
if (m_unk54) {
// TODO

View File

@ -36,7 +36,7 @@ class LegoEntity : public MxEntity
}
virtual MxResult InitFromMxDSObject(MxDSObject& p_object); // vtable+0x18
virtual void Destroy(MxBool); // vtable+0x1c
virtual void Destroy(MxBool p_fromDestructor); // vtable+0x1c
virtual void ParseAction(char *); // vtable+0x20
protected:

View File

@ -25,7 +25,7 @@ void MxLoopingFlcPresenter::Init()
}
// OFFSET: LEGO1 0x100b4432 STUB
void MxLoopingFlcPresenter::Destroy(MxBool p_param)
void MxLoopingFlcPresenter::Destroy(MxBool p_fromDestructor)
{
// TODO
}

View File

@ -22,7 +22,7 @@ class MxLoopingFlcPresenter : public MxFlcPresenter
private:
void Init();
void Destroy(MxBool);
void Destroy(MxBool p_fromDestructor);
undefined4 m_unk68;
};

View File

@ -25,7 +25,6 @@ void MxLoopingSmkPresenter::Init()
}
// OFFSET: LEGO1 0x100b49d0 STUB
void MxLoopingSmkPresenter::Destroy(MxBool p_bool)
void MxLoopingSmkPresenter::Destroy(MxBool p_fromDestructor)
{
// TODO - theres a chain of destroy and free function calls here (FUN_100b4300 -> FUN_100b3900 -> FUN_100c5d40 -> function at 0x100b27b0)
}

View File

@ -22,7 +22,7 @@ class MxLoopingSmkPresenter : public MxSmkPresenter
private:
void Init();
void Destroy(MxBool);
void Destroy(MxBool p_fromDestructor);
undefined4 m_unk720;
};