diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-07-04 15:30:24 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-07-04 15:30:24 +0200 |
commit | e22db390978230156ac3fc5a461cf8894ad181d9 (patch) | |
tree | 5f837ad142aa7f45e6b5287caeb401366ed5650a /src/entities/Ped.cpp | |
parent | Merge branch 'master' of git://github.com/GTAmodding/re3 into erorcun (diff) | |
download | re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar.gz re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar.bz2 re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar.lz re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar.xz re3-e22db390978230156ac3fc5a461cf8894ad181d9.tar.zst re3-e22db390978230156ac3fc5a461cf8894ad181d9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Ped.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/entities/Ped.cpp b/src/entities/Ped.cpp index 537f089f..9e1836c2 100644 --- a/src/entities/Ped.cpp +++ b/src/entities/Ped.cpp @@ -2073,12 +2073,12 @@ CPed::SetupLighting(void) { ActivateDirectional(); SetAmbientColoursForPedsCarsAndObjects(); - if (m_ped_flagB10) { + if (bRenderScorched) { WorldReplaceNormalLightsWithScorched(Scene.world, 0.1f); } else { // Note that this lightMult is only affected by LIGHT_DARKEN. If there's no LIGHT_DARKEN, it will be 1.0. float lightMult = CPointLights::GenerateLightsAffectingObject(&GetPosition()); - if (!m_ped_flagB20 && lightMult != 1.0f) { + if (!bHasBlip && lightMult != 1.0f) { SetAmbientAndDirectionalColours(lightMult); return true; } @@ -2252,7 +2252,7 @@ CPed::CanPedDriveOff(void) bool CPed::CanPedJumpThis(int32 unused) { - CVector2D forward(-sin(m_fRotationCur), -cos(m_fRotationCur)); + CVector2D forward(-sin(m_fRotationCur), cos(m_fRotationCur)); CVector pos = GetPosition(); // wat? CVector forwardPos( |