MxLoopingSmkPresenter - dtor, Init, stub Destroy (#162)

This commit is contained in:
Joshua Peisach 2023-10-04 13:30:37 -04:00 committed by GitHub
parent 5125314755
commit 6916aa49e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View file

@ -10,14 +10,22 @@ MxLoopingSmkPresenter::MxLoopingSmkPresenter()
Init();
}
// OFFSET: LEGO1 0x100b4950 STUB
// OFFSET: LEGO1 0x100b4950
MxLoopingSmkPresenter::~MxLoopingSmkPresenter()
{
// TODO
Destroy(TRUE);
}
// OFFSET: LEGO1 0x100b49b0 STUB
// OFFSET: LEGO1 0x100b49b0
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)
}

View file

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