mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
MxAudioPresenter: add members to match size
This commit is contained in:
parent
527a62c297
commit
f1510883a3
@ -1 +1,5 @@
|
|||||||
#include "mxaudiopresenter.h"
|
#include "mxaudiopresenter.h"
|
||||||
|
|
||||||
|
#include "decomp.h"
|
||||||
|
|
||||||
|
DECOMP_STATIC_ASSERT(sizeof(MxAudioPresenter) == 84);
|
||||||
|
|||||||
@ -7,9 +7,13 @@
|
|||||||
class MxAudioPresenter : public MxMediaPresenter
|
class MxAudioPresenter : public MxMediaPresenter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
MxAudioPresenter() {
|
||||||
|
m_unk50 = 100;
|
||||||
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x1000d280
|
// OFFSET: LEGO1 0x1000d280
|
||||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||||
{
|
{
|
||||||
// 0x100f078c
|
// 0x100f078c
|
||||||
return "MxAudioPresenter";
|
return "MxAudioPresenter";
|
||||||
}
|
}
|
||||||
@ -19,6 +23,8 @@ class MxAudioPresenter : public MxMediaPresenter
|
|||||||
{
|
{
|
||||||
return !strcmp(name, MxAudioPresenter::ClassName()) || MxMediaPresenter::IsA(name);
|
return !strcmp(name, MxAudioPresenter::ClassName()) || MxMediaPresenter::IsA(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int m_unk50;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MXAUDIOPRESENTER_H
|
#endif // MXAUDIOPRESENTER_H
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user