mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
Init functions in MxMediaPresenter and LegoPalettePresenter (#121)
* Match MxMediaPresenter::Init * LegoPalettePresenter::Init() * LegoPalettePresenter: for now, use undefined4 type
This commit is contained in:
parent
dc18b5d9c1
commit
3e7cb6a7a8
3 changed files with 11 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
#include "legopalettepresenter.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(LegoPalettePresenter, 0x68)
|
||||
|
||||
// OFFSET: LEGO1 0x10079e50
|
||||
LegoPalettePresenter::LegoPalettePresenter()
|
||||
{
|
||||
|
@ -12,8 +14,8 @@ LegoPalettePresenter::~LegoPalettePresenter()
|
|||
// TODO
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1007a0d0 STUB
|
||||
// OFFSET: LEGO1 0x1007a0d0
|
||||
void LegoPalettePresenter::Init()
|
||||
{
|
||||
// TODO
|
||||
this->m_unk64 = 0;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef LEGOPALETTEPRESENTER_H
|
||||
#define LEGOPALETTEPRESENTER_H
|
||||
|
||||
#include "decomp.h"
|
||||
#include "mxvideopresenter.h"
|
||||
|
||||
// VTABLE 0x100d9aa0
|
||||
|
@ -27,6 +28,7 @@ class LegoPalettePresenter : public MxVideoPresenter
|
|||
private:
|
||||
void Init();
|
||||
|
||||
undefined4 m_unk64;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -9,8 +9,11 @@ MxLong MxMediaPresenter::Tickle()
|
|||
return 0;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b54e0 STUB
|
||||
// OFFSET: LEGO1 0x100b54e0
|
||||
void MxMediaPresenter::Init()
|
||||
{
|
||||
// TODO
|
||||
this->m_unk40 = NULL;
|
||||
this->m_unk44 = NULL;
|
||||
this->m_unk48 = NULL;
|
||||
this->m_unk4c = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue