diff options
author | withmorten <morten.with@gmail.com> | 2021-01-18 17:30:18 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-18 20:10:13 +0100 |
commit | 776693235cf38395a4664f3df90c9d2d00e09513 (patch) | |
tree | 79620db1c87618fddbe9866d6c7019ee67f64e57 | |
parent | some free cam fixes for controller (diff) | |
download | re3-776693235cf38395a4664f3df90c9d2d00e09513.tar re3-776693235cf38395a4664f3df90c9d2d00e09513.tar.gz re3-776693235cf38395a4664f3df90c9d2d00e09513.tar.bz2 re3-776693235cf38395a4664f3df90c9d2d00e09513.tar.lz re3-776693235cf38395a4664f3df90c9d2d00e09513.tar.xz re3-776693235cf38395a4664f3df90c9d2d00e09513.tar.zst re3-776693235cf38395a4664f3df90c9d2d00e09513.zip |
-rw-r--r-- | src/core/Cam.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/Cam.cpp b/src/core/Cam.cpp index d3768a2c..47c944a5 100644 --- a/src/core/Cam.cpp +++ b/src/core/Cam.cpp @@ -5073,9 +5073,6 @@ CCam::Process_FollowCar_SA(const CVector& CameraTarget, float TargetOrientation, else if (CPad::bInvertLook4Pad) stickY = -stickY; - if (CCamera::m_bUseMouse3rdPerson) - stickY = 0.0f; - float xMovement = Abs(stickX) * (FOV / 80.0f * 5.f / 70.f) * stickX * 0.007f * 0.007f; float yMovement = Abs(stickY) * (FOV / 80.0f * 3.f / 70.f) * stickY * 0.007f * 0.007f; |