diff options
author | majestic <majesticcoding@gmail.com> | 2020-10-09 04:22:50 +0200 |
---|---|---|
committer | majestic <majesticcoding@gmail.com> | 2020-10-09 04:28:31 +0200 |
commit | c091a5c11a826665f083ee7e73635f03aa4b550d (patch) | |
tree | 21f0d517e5210b1bc28d39ebfe67c2b0bcbb2772 /src/peds | |
parent | Merge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff) | |
parent | Fix POSIX streaming (diff) | |
download | re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar.gz re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar.bz2 re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar.lz re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar.xz re3-c091a5c11a826665f083ee7e73635f03aa4b550d.tar.zst re3-c091a5c11a826665f083ee7e73635f03aa4b550d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Ped.cpp | 5 | ||||
-rw-r--r-- | src/peds/Ped.h | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/peds/Ped.cpp b/src/peds/Ped.cpp index f6d54268..c5b19241 100644 --- a/src/peds/Ped.cpp +++ b/src/peds/Ped.cpp @@ -136,7 +136,6 @@ CVector vecPedBikeKickAnimOffset; bool CPed::bNastyLimbsCheat; bool CPed::bFannyMagnetCheat; -bool CPed::bPedCheat2; bool CPed::bPedCheat3; CVector2D CPed::ms_vec2DFleePosition; @@ -14404,7 +14403,7 @@ CPed::PossiblyFindBetterPosToSeekCar(CVector *pos, CVehicle *veh) return true; } -extern CVector vecTestTemp(-1.0f, -1.0f, -1.0f); +CVector vecTestTemp(-1.0f, -1.0f, -1.0f); // --MIAMI: Done void @@ -21441,4 +21440,4 @@ CPed::SetLook(float direction) SetPedState(PED_LOOK_HEADING); SetLookFlag(direction, false); } -}
\ No newline at end of file +} diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 3ee38df3..1f0e9243 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -1114,7 +1114,6 @@ public: static bool bNastyLimbsCheat; static bool bFannyMagnetCheat; - static bool bPedCheat2; static bool bPedCheat3; static CVector2D ms_vec2DFleePosition; |