MxWavePresenter: add members to match size

This commit is contained in:
Anonymous Maarten 2023-06-30 04:21:13 +02:00
parent f1510883a3
commit fbc44a00ba
2 changed files with 28 additions and 3 deletions

View File

@ -1,7 +1,18 @@
#include "mxwavepresenter.h"
// OFFSET: LEGO1 0x100b1ad0 STUB
#include "decomp.h"
DECOMP_STATIC_ASSERT(sizeof(MxWavePresenter) == 108);
// OFFSET: LEGO1 0x100b1ad0
void MxWavePresenter::Init()
{
// TODO
m_unk54 = 0;
m_unk58 = 0;
m_unk5c = 0;
m_unk60 = 0;
m_unk64 = 0;
m_unk65 = 0;
m_unk66 = 0;
m_unk68 = 0;
}

View File

@ -3,6 +3,8 @@
#include "mxsoundpresenter.h"
#include "decomp.h"
// VTABLE 0x100d49a8
// SIZE 0x6c
class MxWavePresenter : public MxSoundPresenter
@ -11,6 +13,18 @@ class MxWavePresenter : public MxSoundPresenter
void Init();
public:
MxWavePresenter() {
Init();
}
undefined4 m_unk54;
undefined4 m_unk58;
undefined4 m_unk5c;
undefined4 m_unk60;
undefined m_unk64;
undefined m_unk65;
undefined m_unk66;
undefined m_unk67;
undefined m_unk68;
};
#endif // MXWAVEPRESENTER_H