diff options
author | erorcun <erayorcunus@gmail.com> | 2019-10-05 20:54:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-05 20:54:39 +0200 |
commit | c7d3b302f59842c0a4090a5da00bb8d0c6d94571 (patch) | |
tree | 735df13023b1746461cee765aaf9fcb11cb8be9b /src/peds/Ped.h | |
parent | Merge pull request #223 from Sergeanur/fix/WideCorona (diff) | |
parent | Fixes (diff) | |
download | re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar.gz re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar.bz2 re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar.lz re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar.xz re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.tar.zst re3-c7d3b302f59842c0a4090a5da00bb8d0c6d94571.zip |
Diffstat (limited to 'src/peds/Ped.h')
-rw-r--r-- | src/peds/Ped.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index bf4849b2..0b1b80d6 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -328,7 +328,7 @@ public: uint8 bGonnaKillTheCarJacker : 1; // only set when car is jacked from right door uint8 bFadeOut : 1; - uint8 bKnockedUpIntoAir : 1; // NOT CERTAIN - has ped been knocked up into the air by a car collision + uint8 m_ped_flagH1 : 1; uint8 bHitSteepSlope : 1; // has ped collided/is standing on a steep slope (surface type) uint8 m_ped_flagH4 : 1; uint8 bClearObjective : 1; @@ -342,7 +342,11 @@ public: uint8 m_ped_flagI4 : 1; // seems like related with cars uint8 bHasAlreadyBeenRecorded : 1; uint8 bFallenDown : 1; +#ifdef VC_PED_PORTS + uint8 bKnockedUpIntoAir : 1; // has ped been knocked up into the air by a car collision +#else uint8 m_ped_flagI20 : 1; +#endif uint8 m_ped_flagI40 : 1; uint8 m_ped_flagI80 : 1; |