MxMIDIPresenter destructor, stub Destroy for now

This commit is contained in:
Joshua Peisach 2023-10-13 20:02:56 -04:00
parent a24a798c82
commit b9162b0126
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 15 additions and 0 deletions

View File

@ -9,8 +9,20 @@ MxMIDIPresenter::MxMIDIPresenter() {
Init();
}
// OFFSET: LEGO1 0x100c27c0
MxMIDIPresenter::~MxMIDIPresenter()
{
Destroy(TRUE);
}
// OFFSET: LEGO1 0x100c2820
void MxMIDIPresenter::Init()
{
m_unk54 = 0;
}
// OFFSET: LEGO1 0x100c2830 STUB
void MxMIDIPresenter::Destroy(MxBool p_param)
{
// TODO
}

View File

@ -8,6 +8,7 @@ class MxMIDIPresenter : public MxMusicPresenter
{
public:
MxMIDIPresenter();
~MxMIDIPresenter();
// OFFSET: LEGO1 0x100c2650
inline virtual const char *ClassName() const override // vtable+0xc
@ -24,6 +25,8 @@ class MxMIDIPresenter : public MxMusicPresenter
private:
void Init();
void Destroy(MxBool);
undefined4 m_unk54;
};