diff --git a/LEGO1/legopathactor.h b/LEGO1/legopathactor.h index 87bdbf51..f2fbfd2a 100644 --- a/LEGO1/legopathactor.h +++ b/LEGO1/legopathactor.h @@ -25,7 +25,7 @@ class LegoPathActor : public LegoActor { return !strcmp(name, LegoPathActor::ClassName()) || LegoActor::IsA(name); } - +protected: // TODO: the types. IslePathActor-inherited classes (pizza, jetski, etc.) needs these as public: undefined unk78[0xc4]; MxFloat m_unk13c; diff --git a/LEGO1/pizza.cpp b/LEGO1/pizza.cpp index c82f9e58..7e153b26 100644 --- a/LEGO1/pizza.cpp +++ b/LEGO1/pizza.cpp @@ -13,7 +13,7 @@ Pizza::Pizza() this->m_unk88 = 0; this->m_unk8c = -1; this->m_unk98 = 0; - this->m_unk90 = 0.0; + this->m_unk90 = 0x80000000; } // OFFSET: LEGO1 0x10038100 diff --git a/LEGO1/pizza.h b/LEGO1/pizza.h index 5eec7842..34d781c9 100644 --- a/LEGO1/pizza.h +++ b/LEGO1/pizza.h @@ -36,7 +36,7 @@ class Pizza : public IsleActor MxS32 m_unk84; MxS32 m_unk88; MxS32 m_unk8c; - MxFloat m_unk90; + MxU32 m_unk90; MxS32 m_unk94; MxS32 m_unk98; };