From 013d2cc02e3b20ba293e03dcb12f1d9d192474da Mon Sep 17 00:00:00 2001 From: Joshua Peisach Date: Sat, 30 Sep 2023 18:16:38 -0400 Subject: [PATCH] Pizza: fix type of m_unk98 --- LEGO1/pizza.cpp | 2 -- LEGO1/pizza.h | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/LEGO1/pizza.cpp b/LEGO1/pizza.cpp index 7e153b26..e6853d9a 100644 --- a/LEGO1/pizza.cpp +++ b/LEGO1/pizza.cpp @@ -1,7 +1,5 @@ #include "pizza.h" -#include "decomp.h" - DECOMP_SIZE_ASSERT(Pizza, 0x9c); // OFFSET: LEGO1 0x10037ef0 diff --git a/LEGO1/pizza.h b/LEGO1/pizza.h index 34d781c9..411875c4 100644 --- a/LEGO1/pizza.h +++ b/LEGO1/pizza.h @@ -1,6 +1,8 @@ #ifndef PIZZA_H #define PIZZA_H +#include "decomp.h" + #include "isleactor.h" #include "mxcore.h" #include "mxomni.h" @@ -38,7 +40,8 @@ class Pizza : public IsleActor MxS32 m_unk8c; MxU32 m_unk90; MxS32 m_unk94; - MxS32 m_unk98; + undefined m_unk98; + undefined m_unk99[3]; }; #endif // PIZZA_H