diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-02-25 20:54:26 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-03-22 17:30:54 +0100 |
commit | c88c2115e227ef0dbac6368224f1564159a9e2df (patch) | |
tree | d58a1ae9fa66ff43f6bf71aa020f9f78b66f7544 /src/core | |
parent | Fixes for Serge's review (diff) | |
download | re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.gz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.bz2 re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.lz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.xz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.zst re3-c88c2115e227ef0dbac6368224f1564159a9e2df.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Camera.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Camera.cpp b/src/core/Camera.cpp index fc056038..75e52c5f 100644 --- a/src/core/Camera.cpp +++ b/src/core/Camera.cpp @@ -428,7 +428,7 @@ CCam::Process_FollowPed(const CVector &CameraTarget, float TargetOrientation, fl if(TheCamera.PedZoomIndicator == 3.0f) RealGroundDist = 4.704914f; if(TheCamera.PedZoomIndicator == 4.0f) RealGroundDist = 2.090556f; if(m_fCloseInPedHeightOffset > 0.00001f) - RealGroundDist = 1.7016; + RealGroundDist = 1.7016f; bool Shooting = false; |