Match 100%

This commit is contained in:
Christian Semmler 2023-10-16 14:14:45 -04:00
parent 6a2fcf496f
commit d8b9948d04
2 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,7 @@
#include "gasstationstate.h"
DECOMP_SIZE_ASSERT(GasStationState, 0x24);
// OFFSET: LEGO1 0x10005eb0
GasStationState::GasStationState()
{
@ -8,7 +10,9 @@ GasStationState::GasStationState()
m_unk0x1c = 0;
m_unk0x1e = 0;
m_unk0x20 = 0;
m_unk0x08 = -1;
m_unk0x0c = -1;
m_unk0x10 = -1;
undefined4 *unk = m_unk0x08;
unk[0] = -1;
unk[1] = -1;
unk[2] = -1;
}

View File

@ -24,15 +24,13 @@ class GasStationState : public LegoState
}
private:
undefined4 m_unk0x08;
undefined4 m_unk0x0c;
undefined4 m_unk0x10;
undefined4 m_unk0x08[3];
undefined4 m_unk0x14;
undefined2 m_unk0x18;
undefined2 m_unk0x1a;
undefined2 m_unk0x1c;
undefined2 m_unk0x1e;
undefined m_unk0x20;
undefined2 m_unk0x20;
};
#endif // GASSTATIONSTATE_H