MxMediaManager & MxMusicPresenter

This commit is contained in:
DimaLeon2000 2023-10-13 22:36:25 +09:00
parent 7d008ce069
commit 362db6423b
2 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ class MxMediaPresenter : public MxPresenter
undefined4 m_unk4c; undefined4 m_unk4c;
private: private:
void Init(); void Init();
protected:
void Destroy(MxBool p_fromDestructor); void Destroy(MxBool p_fromDestructor);
}; };

View File

@ -33,7 +33,7 @@ void MxMusicPresenter::Destroy(MxBool p_fromDestructor)
Init(); Init();
m_criticalSection.Leave(); m_criticalSection.Leave();
if (!p_fromDestructor) { if (!p_fromDestructor) {
MxMediaPresenter::Destroy(); MxMediaPresenter::Destroy(FALSE);
} }
} }