Removing this-> from legoloadcachesoundpresenter.cpp

This commit is contained in:
Daniel Hejduk 2024-02-04 19:34:58 +01:00 committed by GitHub
parent b4c9d78eb4
commit 8e4834c7da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,15 +21,15 @@ LegoLoadCacheSoundPresenter::~LegoLoadCacheSoundPresenter()
// FUNCTION: LEGO1 0x100184e0 // FUNCTION: LEGO1 0x100184e0
void LegoLoadCacheSoundPresenter::Init() void LegoLoadCacheSoundPresenter::Init()
{ {
this->m_unk0x70 = NULL; m_unk0x70 = NULL;
this->m_unk0x78 = 0; m_unk0x78 = 0;
this->m_unk0x7c = 0; m_unk0x7c = 0;
} }
// FUNCTION: LEGO1 0x100184f0 // FUNCTION: LEGO1 0x100184f0
void LegoLoadCacheSoundPresenter::Destroy(MxBool p_fromDestructor) void LegoLoadCacheSoundPresenter::Destroy(MxBool p_fromDestructor)
{ {
delete[] this->m_unk0x70; delete[] m_unk0x70;
MxWavePresenter::Destroy(p_fromDestructor); MxWavePresenter::Destroy(p_fromDestructor);
} }