summaryrefslogtreecommitdiffstats
path: root/src/core/Cam.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-01-21 22:11:36 +0100
committerSergeanur <s.anureev@yandex.ua>2021-01-21 22:11:36 +0100
commite8db0e3abb52c465d842133c09ea320a820e3121 (patch)
treecf5a011373899891c6a191f024839a29d018d8fb /src/core/Cam.cpp
parentMore fonts (diff)
parentMerge remote-tracking branch 'origin/miami' into lcs (diff)
downloadre3-e8db0e3abb52c465d842133c09ea320a820e3121.tar
re3-e8db0e3abb52c465d842133c09ea320a820e3121.tar.gz
re3-e8db0e3abb52c465d842133c09ea320a820e3121.tar.bz2
re3-e8db0e3abb52c465d842133c09ea320a820e3121.tar.lz
re3-e8db0e3abb52c465d842133c09ea320a820e3121.tar.xz
re3-e8db0e3abb52c465d842133c09ea320a820e3121.tar.zst
re3-e8db0e3abb52c465d842133c09ea320a820e3121.zip
Diffstat (limited to 'src/core/Cam.cpp')
-rw-r--r--src/core/Cam.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Cam.cpp b/src/core/Cam.cpp
index 47c944a5..63d8b30b 100644
--- a/src/core/Cam.cpp
+++ b/src/core/Cam.cpp
@@ -5064,7 +5064,7 @@ CCam::Process_FollowCar_SA(const CVector& CameraTarget, float TargetOrientation,
// Using GetCarGun(LR/UD) will give us same unprocessed RightStick value as SA
float stickX = -(pad->GetCarGunLeftRight());
- float stickY = pad->GetCarGunUpDown();
+ float stickY = -pad->GetCarGunUpDown();
// In SA this checks for m_bUseMouse3rdPerson so num2 / num8 do not move camera
// when Keyboard & Mouse controls are used. To make it work better with III/VC, check for actual pad state instead