Fix pizza constructor (#149)

* Pizza: fix type of m_unk98

* Fix pizza constructor

* Match Pizza::Pizza

* Use undefined type

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach
2023-09-30 19:25:33 -04:00
committed by GitHub
parent b20aa9b8fb
commit 7f423439b7
4 changed files with 20 additions and 12 deletions

View File

@@ -1,6 +1,8 @@
#ifndef PIZZA_H
#define PIZZA_H
#include "decomp.h"
#include "isleactor.h"
#include "mxcore.h"
#include "mxomni.h"
@@ -29,16 +31,17 @@ public:
{
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
}
private:
MxS32 m_unk78;
MxS32 m_unk7c;
MxS32 m_unk80;
MxS32 m_unk84;
MxS32 m_unk88;
MxS32 m_unk8c;
MxU32 m_unk90;
MxS32 m_unk94;
MxS32 m_unk98;
undefined4 m_unk78;
undefined4 m_unk7c;
undefined4 m_unk80;
undefined4 m_unk84;
undefined4 m_unk88;
undefined4 m_unk8c;
undefined4 m_unk90;
undefined4 m_unk94;
undefined m_unk98;
};
#endif // PIZZA_H