MxLoopingFlcPresenter - finish Init, stub Destroy function, match dtor

This commit is contained in:
Joshua Peisach 2023-10-03 17:01:26 -04:00
parent 923016e94d
commit dd1e30fb72
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 11 additions and 1 deletions

View File

@ -13,11 +13,19 @@ MxLoopingFlcPresenter::MxLoopingFlcPresenter()
// OFFSET: LEGO1 0x100b43b0 STUB // OFFSET: LEGO1 0x100b43b0 STUB
MxLoopingFlcPresenter::~MxLoopingFlcPresenter() MxLoopingFlcPresenter::~MxLoopingFlcPresenter()
{ {
// TODO Destroy(true);
} }
// OFFSET: LEGO1 0x100b4410 // OFFSET: LEGO1 0x100b4410
void MxLoopingFlcPresenter::Init() void MxLoopingFlcPresenter::Init()
{ {
this->m_unk68 = 0; this->m_unk68 = 0;
this->m_flags &= 0xfd;
this->m_flags &= 0xfb;
} }
// OFFSET: LEGO1 0x100b4432 STUB
void MxLoopingFlcPresenter::Destroy(MxBool p_param)
{
// TODO
}

View File

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