mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
fix types
This commit is contained in:
parent
01d0fecebe
commit
796ce9bce7
@ -85,15 +85,15 @@ void MxDSObject::SetSourceName(const char *p_sourceName)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100bf9c0
|
// OFFSET: LEGO1 0x100bf9c0
|
||||||
int MxDSObject::unk14()
|
undefined4 MxDSObject::unk14()
|
||||||
{
|
{
|
||||||
return 10;
|
return 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100bf9d0
|
// OFFSET: LEGO1 0x100bf9d0
|
||||||
unsigned int MxDSObject::CalculateUnk08()
|
MxU32 MxDSObject::CalculateUnk08()
|
||||||
{
|
{
|
||||||
unsigned int unk08;
|
MxU32 unk08;
|
||||||
|
|
||||||
if (this->m_sourceName)
|
if (this->m_sourceName)
|
||||||
unk08 = strlen(this->m_sourceName) + 3;
|
unk08 = strlen(this->m_sourceName) + 3;
|
||||||
|
|||||||
@ -27,14 +27,14 @@ class MxDSObject : public MxCore
|
|||||||
// OFFSET: LEGO1 0x100bf740
|
// OFFSET: LEGO1 0x100bf740
|
||||||
inline virtual MxBool IsA(const char *name) const override { return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); }; // vtable+10;
|
inline virtual MxBool IsA(const char *name) const override { return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); }; // vtable+10;
|
||||||
|
|
||||||
virtual int unk14(); // vtable+14;
|
virtual undefined4 unk14(); // vtable+14;
|
||||||
virtual unsigned int CalculateUnk08(); // vtable+18;
|
virtual MxU32 CalculateUnk08(); // vtable+18;
|
||||||
virtual void Parse(char **p_source, MxS16 p_unk24); // vtable+1c;
|
virtual void Parse(char **p_source, MxS16 p_unk24); // vtable+1c;
|
||||||
|
|
||||||
inline const MxAtomId& GetAtomId() { return this->m_atomId; }
|
inline const MxAtomId& GetAtomId() { return this->m_atomId; }
|
||||||
inline int GetUnknown1c() { return this->m_unk1c; }
|
inline undefined4 GetUnknown1c() { return this->m_unk1c; }
|
||||||
|
|
||||||
inline void SetUnknown1c(int p_unk1c) { this->m_unk1c = p_unk1c; }
|
inline void SetUnknown1c(undefined4 p_unk1c) { this->m_unk1c = p_unk1c; }
|
||||||
inline void SetUnknown24(MxS16 p_unk24) { this->m_unk24 = p_unk24; }
|
inline void SetUnknown24(MxS16 p_unk24) { this->m_unk24 = p_unk24; }
|
||||||
|
|
||||||
// OFFSET: ISLE 0x401c40
|
// OFFSET: ISLE 0x401c40
|
||||||
@ -45,7 +45,7 @@ class MxDSObject : public MxCore
|
|||||||
inline void SetType(MxDSType p_type) { this->m_type = p_type; }
|
inline void SetType(MxDSType p_type) { this->m_type = p_type; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
undefined4 m_unk08;
|
MxU32 m_unk08;
|
||||||
MxU16 m_type;
|
MxU16 m_type;
|
||||||
char* m_sourceName;
|
char* m_sourceName;
|
||||||
undefined4 m_unk14;
|
undefined4 m_unk14;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user