mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
MxLoopingFlcPresenter::Destroy (#382)
* MxLoopingFlcPresenter::Destroy * Use parent class call --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
a06a360dc6
commit
ff4845a6ea
1 changed files with 7 additions and 2 deletions
|
@ -24,10 +24,15 @@ void MxLoopingFlcPresenter::Init()
|
|||
this->m_flags &= ~Flag_Bit3;
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x100b4432
|
||||
// FUNCTION: LEGO1 0x100b4430
|
||||
void MxLoopingFlcPresenter::Destroy(MxBool p_fromDestructor)
|
||||
{
|
||||
// TODO
|
||||
m_criticalSection.Enter();
|
||||
Init();
|
||||
m_criticalSection.Leave();
|
||||
|
||||
if (!p_fromDestructor)
|
||||
MxFlcPresenter::Destroy(FALSE);
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100b4470
|
||||
|
|
Loading…
Reference in a new issue