diff options
author | withmorten <morten.with@gmail.com> | 2021-01-11 18:42:54 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-11 18:43:04 +0100 |
commit | 4a8a1af8858edeef949d8f2ecbd25d3c93ccd042 (patch) | |
tree | 75ec362ea1d1d0ca7d3198c025e373a147dc2a81 /src/peds/Ped.h | |
parent | fixes (diff) | |
download | re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar.gz re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar.bz2 re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar.lz re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar.xz re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.tar.zst re3-4a8a1af8858edeef949d8f2ecbd25d3c93ccd042.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Ped.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 6c0d9987..7798483f 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -492,10 +492,15 @@ public: uint32 bDonePositionOutOfCollision : 1; uint32 bCanAttackPlayerWithCops : 1; +#ifdef KANGAROO_CHEAT // our own flags uint32 m_ped_flagI80 : 1; // KANGAROO_CHEAT define makes use of this as cheat toggle +#endif uint8 m_gangFlags; + uint8 m_unused15D; // these 3 can't be padding but had to actually have been members ... + uint8 m_unused15E; + uint8 m_unused15F; uint8 CharCreatedBy; eObjective m_objective; eObjective m_prevObjective; @@ -536,7 +541,7 @@ public: uint32 m_pathNodeTimer; CPathNode m_pathNodeObjPool[8]; CPathNode* m_pCurPathNode; - char m_nPathDir; + int8 m_nPathDir; CPathNode* m_pLastPathNode; CPathNode* m_pNextPathNode; CVector m_followPathDestPos; |