rename all uncertain names to unk (#203)

This commit is contained in:
Ramen2X
2023-10-13 17:36:16 -04:00
committed by GitHub
parent 34e09c2bb3
commit a24a798c82
13 changed files with 36 additions and 36 deletions

View File

@@ -4,16 +4,16 @@
MxDSChunk::MxDSChunk()
{
this->m_length = 0;
this->m_pStuff = NULL;
this->m_unk18 = NULL;
this->m_buffer = -1;
this->m_long1FromHeader = 0;
this->m_long2FromHeader = 0;
this->m_unk10 = 0;
this->m_unk14 = 0;
}
// OFFSET: LEGO1 0x100be170
MxDSChunk::~MxDSChunk()
{
if ((this->m_length & 1) != 0) {
delete this->m_pStuff;
delete this->m_unk18;
}
}