fix(CAutomobile): Align bytes by 4

This commit is contained in:
Yimura 2022-01-28 00:35:13 +01:00
parent 5abdecaa82
commit d25c9a3310

View File

@ -4,6 +4,7 @@
#include "CVehicleModelInfo.hpp"
#include "fwEntity.hpp"
#pragma pack(push, 4)
class CAutomobile : public rage::fwEntity
{
public:
@ -43,3 +44,4 @@ public:
class CPed *m_last_driver; //0x0CE4
}; //Size: 0x0CEC
static_assert(sizeof(CAutomobile) == 0xCEC);
#pragma pack(push, 4)