From 60149fe6ed9af7418cb2d3a90a1cdc11b4bf71fc Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 30 Sep 2023 19:21:28 -0400 Subject: [PATCH] Match Pizza::Pizza --- LEGO1/legoactor.cpp | 5 +++++ LEGO1/legoactor.h | 2 ++ LEGO1/pizza.h | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/LEGO1/legoactor.cpp b/LEGO1/legoactor.cpp index c26cc1fc..7faa3b0d 100644 --- a/LEGO1/legoactor.cpp +++ b/LEGO1/legoactor.cpp @@ -1,3 +1,8 @@ #include "legoactor.h" DECOMP_SIZE_ASSERT(LegoActor, 0x78) + +// OFFSET: LEGO1 0x1002d110 STUB +LegoActor::LegoActor() +{ +} \ No newline at end of file diff --git a/LEGO1/legoactor.h b/LEGO1/legoactor.h index cc8778db..fe5e43a0 100644 --- a/LEGO1/legoactor.h +++ b/LEGO1/legoactor.h @@ -9,6 +9,8 @@ class LegoActor : public LegoEntity { public: + LegoActor(); + // OFFSET: LEGO1 0x1002d210 inline virtual const char *ClassName() const override // vtable+0x0c { diff --git a/LEGO1/pizza.h b/LEGO1/pizza.h index 411875c4..604e992d 100644 --- a/LEGO1/pizza.h +++ b/LEGO1/pizza.h @@ -31,6 +31,7 @@ class Pizza : public IsleActor { return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name); } + private: MxS32 m_unk78; MxS32 m_unk7c; @@ -41,7 +42,6 @@ class Pizza : public IsleActor MxU32 m_unk90; MxS32 m_unk94; undefined m_unk98; - undefined m_unk99[3]; }; #endif // PIZZA_H