mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
MxLoopingSmkPresenter - dtor, Init, stub Destroy (#162)
This commit is contained in:
parent
5125314755
commit
6916aa49e3
2 changed files with 14 additions and 4 deletions
|
@ -10,14 +10,22 @@ MxLoopingSmkPresenter::MxLoopingSmkPresenter()
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100b4950 STUB
|
// OFFSET: LEGO1 0x100b4950
|
||||||
MxLoopingSmkPresenter::~MxLoopingSmkPresenter()
|
MxLoopingSmkPresenter::~MxLoopingSmkPresenter()
|
||||||
{
|
{
|
||||||
// TODO
|
Destroy(TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100b49b0 STUB
|
// OFFSET: LEGO1 0x100b49b0
|
||||||
void MxLoopingSmkPresenter::Init()
|
void MxLoopingSmkPresenter::Init()
|
||||||
{
|
{
|
||||||
// TODO
|
this->m_unk720 = 0;
|
||||||
|
this->m_flags &= 0xfd;
|
||||||
|
this->m_flags &= 0xfb;
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b49d0 STUB
|
||||||
|
void MxLoopingSmkPresenter::Destroy(MxBool p_bool)
|
||||||
|
{
|
||||||
|
// TODO - theres a chain of destroy and free function calls here (FUN_100b4300 -> FUN_100b3900 -> FUN_100c5d40 -> function at 0x100b27b0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,8 @@ class MxLoopingSmkPresenter : public MxSmkPresenter
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
|
void Destroy(MxBool);
|
||||||
|
|
||||||
undefined4 m_unk720;
|
undefined4 m_unk720;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue