mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-27 18:21:15 +00:00
MxMIDIPresenter destructor, stub Destroy for now
This commit is contained in:
parent
a24a798c82
commit
b9162b0126
@ -9,8 +9,20 @@ MxMIDIPresenter::MxMIDIPresenter() {
|
|||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100c27c0
|
||||||
|
MxMIDIPresenter::~MxMIDIPresenter()
|
||||||
|
{
|
||||||
|
Destroy(TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100c2820
|
// OFFSET: LEGO1 0x100c2820
|
||||||
void MxMIDIPresenter::Init()
|
void MxMIDIPresenter::Init()
|
||||||
{
|
{
|
||||||
m_unk54 = 0;
|
m_unk54 = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100c2830 STUB
|
||||||
|
void MxMIDIPresenter::Destroy(MxBool p_param)
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|||||||
@ -8,6 +8,7 @@ class MxMIDIPresenter : public MxMusicPresenter
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MxMIDIPresenter();
|
MxMIDIPresenter();
|
||||||
|
~MxMIDIPresenter();
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100c2650
|
// OFFSET: LEGO1 0x100c2650
|
||||||
inline virtual const char *ClassName() const override // vtable+0xc
|
inline virtual const char *ClassName() const override // vtable+0xc
|
||||||
@ -24,6 +25,8 @@ class MxMIDIPresenter : public MxMusicPresenter
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
|
void Destroy(MxBool);
|
||||||
|
|
||||||
undefined4 m_unk54;
|
undefined4 m_unk54;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user