MxMIDIPresenter: add members to match size

This commit is contained in:
Anonymous Maarten 2023-06-30 04:35:51 +02:00
parent fbc44a00ba
commit 80e6746196
3 changed files with 22 additions and 0 deletions

View File

@ -123,6 +123,7 @@ add_library(lego1 SHARED
LEGO1/mxloopingflcpresenter.cpp
LEGO1/mxloopingsmkpresenter.cpp
LEGO1/mxmediapresenter.cpp
LEGO1/mxmidipresenter.cpp
LEGO1/mxmusicpresenter.cpp
LEGO1/mxnotificationmanager.cpp
LEGO1/mxomni.cpp

16
LEGO1/mxmidipresenter.cpp Normal file
View File

@ -0,0 +1,16 @@
#include "mxmidipresenter.h"
#include "decomp.h"
DECOMP_STATIC_ASSERT(sizeof(MxMIDIPresenter) == 88);
// OFFSET: LEGO1 0x100c25e0
MxMIDIPresenter::MxMIDIPresenter() {
Init();
}
// OFFSET: LEGO1 0x100c2820
void MxMIDIPresenter::Init()
{
m_unk54 = 0;
}

View File

@ -6,6 +6,11 @@
// VTABLE 0x100dca20
class MxMIDIPresenter : public MxMusicPresenter
{
public:
MxMIDIPresenter();
private:
void Init();
undefined4 m_unk54;
};
#endif // MXMIDIPRESENTER_H