This commit is contained in:
Christian Semmler 2023-12-25 17:43:36 -05:00
parent f260838b7f
commit 8cad814dda
2 changed files with 10 additions and 8 deletions

View File

@ -17,7 +17,7 @@ LegoLoadCacheSoundPresenter::~LegoLoadCacheSoundPresenter()
// FUNCTION: LEGO1 0x100184e0 // FUNCTION: LEGO1 0x100184e0
void LegoLoadCacheSoundPresenter::Init() void LegoLoadCacheSoundPresenter::Init()
{ {
this->m_unk0x70 = 0; this->m_unk0x70 = NULL;
this->m_unk0x78 = 0; this->m_unk0x78 = 0;
this->m_unk0x7c = 0; this->m_unk0x7c = 0;
} }

View File

@ -22,13 +22,15 @@ class LegoLoadCacheSoundPresenter : public MxWavePresenter {
void Init(); void Init();
void Destroy(MxBool p_fromDestructor); void Destroy(MxBool p_fromDestructor);
// TODO: Types undefined4* m_unk0x6c; // 0x6c
undefined4* m_unk0x6c; undefined4* m_unk0x70; // 0x70
undefined4* m_unk0x70; // might be a void* as per Destroy function undefined4 m_unk0x74; // 0x74
undefined4 m_unk0x74; undefined4 m_unk0x78; // 0x78
undefined4 m_unk0x78; undefined m_unk0x7c; // 0x7c
undefined m_unk0x7c; undefined4 m_unk0x80[4]; // 0x80
undefined4 m_unk0x7d[4];
}; };
// SYNTHETIC: LEGO1 0x10018460
// LegoLoadCacheSoundPresenter::`scalar deleting destructor'
#endif // LEGOLOADCACHESOUNDPRESENTER_H #endif // LEGOLOADCACHESOUNDPRESENTER_H