mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 00:31:16 +00:00
More rename fixes
This commit is contained in:
parent
dfea153641
commit
582888849c
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -25,7 +25,7 @@ void MxLoopingFlcPresenter::Init()
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b4432 STUB
|
||||
void MxLoopingFlcPresenter::Destroy(MxBool p_param)
|
||||
void MxLoopingFlcPresenter::Destroy(MxBool p_fromDestructor)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@ class MxLoopingFlcPresenter : public MxFlcPresenter
|
||||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
void Destroy(MxBool p_fromDestructor);
|
||||
|
||||
undefined4 m_unk68;
|
||||
};
|
||||
|
||||
@ -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)
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@ class MxLoopingSmkPresenter : public MxSmkPresenter
|
||||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
void Destroy(MxBool p_fromDestructor);
|
||||
|
||||
undefined4 m_unk720;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user