MxFlcPresenter ctor/dtor

This commit is contained in:
Joshua Peisach 2023-09-19 22:24:31 -04:00
parent 4bd67e4ae1
commit 7553d7a5dc
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
3 changed files with 10 additions and 6 deletions

View File

@ -4,14 +4,18 @@
DECOMP_SIZE_ASSERT(MxFlcPresenter, 0x68);
// OFFSET: LEGO1 0x100b3310 STUB
// OFFSET: LEGO1 0x100b3310
MxFlcPresenter::MxFlcPresenter()
{
// TODO
this->m_flags &= 0xfd;
this->m_flags &= 0xfb;
this->m_unk64 = 0;
}
// OFFSET: LEGO1 0x100b3420 STUB
// OFFSET: LEGO1 0x100b3420
MxFlcPresenter::~MxFlcPresenter()
{
// TODO
if(this->m_unk64) {
delete this->m_unk64;
}
}

View File

@ -26,7 +26,7 @@ class MxFlcPresenter : public MxVideoPresenter
return !strcmp(name, MxFlcPresenter::ClassName()) || MxVideoPresenter::IsA(name);
}
undefined4 m_unk64;
undefined4 *m_unk64;
};
#endif // MXFLCPRESENTER_H

View File

@ -32,7 +32,7 @@ class MxVideoPresenter : public MxMediaPresenter
undefined4 m_unk54;
undefined4 m_unk58;
undefined2 m_unk5c;
unsigned char m_flags;
unsigned char m_flags; // 0x5e
undefined4 m_unk60;
};