diff --git a/LEGO1/mxentity.cpp b/LEGO1/mxentity.cpp index ade6490e..1b5ea84f 100644 --- a/LEGO1/mxentity.cpp +++ b/LEGO1/mxentity.cpp @@ -3,13 +3,10 @@ // OFFSET: LEGO1 0x1001d190 MxEntity::MxEntity() { - // FIXME: This won't match because of m_atom. How would it access m_internal? - this->m_atom = NULL; this->m_mxEntityId = -1; } // OFFSET: LEGO1 0x1000c110 MxEntity::~MxEntity() { - *this->m_atom; } \ No newline at end of file diff --git a/LEGO1/mxentity.h b/LEGO1/mxentity.h index dfbf2e7b..a7e26e37 100644 --- a/LEGO1/mxentity.h +++ b/LEGO1/mxentity.h @@ -26,7 +26,7 @@ class MxEntity : public MxCore } private: MxS32 m_mxEntityId; // 0x8 - MxAtomId* m_atom; // 0xc + MxAtomId m_atom; // 0xc }; #endif // MXENTITY_H