mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
a31626cffb
* Match MxDSChunk ctor/dtor * Push work on MxDSAction/MediaAction/Sound * MxDSMediaAction constructor is matching up to a mov location * Match MxDSSound constructor by adding the missing member just four bytes in between them in ghidra.. isn't that enough for ghidra to justify a member variable? * Match MxDSMediaAction constructor Today's lesson: ecx suggests '1'
21 lines
406 B
C++
21 lines
406 B
C++
#include "mxdsmediaaction.h"
|
|
|
|
// OFFSET: LEGO1 0x100c8b40
|
|
MxDSMediaAction::MxDSMediaAction()
|
|
{
|
|
this->m_unk98 = 0;
|
|
this->m_unk9c = 0;
|
|
this->m_unka0 = 0;
|
|
this->m_unka4 = 0;
|
|
this->m_unka8 = 0;
|
|
this->m_unkac = 1;
|
|
this->m_unkb4 = 0xffffffff;
|
|
this->m_unkb0 = 0;
|
|
this->SetType(MxDSType_MediaAction);
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c8cf0
|
|
MxDSMediaAction::~MxDSMediaAction()
|
|
{
|
|
delete this->m_unk98;
|
|
}
|