Bootstrap rest of LegoTexturePresenter (#374)

* Bootstrap rest of LegoTexturePresenter

* Fixes

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach
2023-12-27 13:32:32 -05:00
committed by GitHub
parent d2b05a0983
commit c6174c2a13
2 changed files with 21 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#include "legoomni.h"
#include "legovideomanager.h"
#include "mxcompositepresenter.h"
// FUNCTION: LEGO1 0x1004eb40
LegoTexturePresenter::~LegoTexturePresenter()
@@ -15,3 +16,21 @@ MxResult LegoTexturePresenter::AddToManager()
VideoManager()->AddPresenter(*this);
return SUCCESS;
}
// STUB: LEGO1 0x1004fc60
MxResult LegoTexturePresenter::PutData()
{
// TODO
return FAILURE;
}
// FUNCTION: LEGO1 0x1004fcb0
void LegoTexturePresenter::DoneTickle()
{
if (this->m_compositePresenter && !this->m_compositePresenter->VTable0x64(2)) {
SetTickleState(TickleState_Idle);
return;
}
MxMediaPresenter::DoneTickle();
}