Make legopathactor fields protected for now, fix a type in Pizza

This commit is contained in:
Joshua Peisach 2023-09-08 17:23:15 -04:00
parent 35382ac9e5
commit 8ab6ce0f38
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ class LegoPathActor : public LegoActor
{ {
return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name); return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name);
} }
protected:
// TODO: the types. IslePathActor-inherited classes (pizza, jetski, etc.) needs these as public: // TODO: the types. IslePathActor-inherited classes (pizza, jetski, etc.) needs these as public:
undefined unk78[0xc4]; undefined unk78[0xc4];
MxFloat m_unk13c; MxFloat m_unk13c;

View File

@ -13,7 +13,7 @@ Pizza::Pizza()
this->m_unk88 = 0; this->m_unk88 = 0;
this->m_unk8c = -1; this->m_unk8c = -1;
this->m_unk98 = 0; this->m_unk98 = 0;
this->m_unk90 = 0.0; this->m_unk90 = 0x80000000;
} }
// OFFSET: LEGO1 0x10038100 // OFFSET: LEGO1 0x10038100

View File

@ -36,7 +36,7 @@ class Pizza : public IsleActor
MxS32 m_unk84; MxS32 m_unk84;
MxS32 m_unk88; MxS32 m_unk88;
MxS32 m_unk8c; MxS32 m_unk8c;
MxFloat m_unk90; MxU32 m_unk90;
MxS32 m_unk94; MxS32 m_unk94;
MxS32 m_unk98; MxS32 m_unk98;
}; };