summaryrefslogtreecommitdiffstats
path: root/src/core/Cam.cpp
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-01-20 13:57:03 +0100
committerwithmorten <morten.with@gmail.com>2021-01-20 13:57:03 +0100
commit8590457d41190c83fe75e265ffff8c73ae9d8d59 (patch)
treee0fffaa54101b883b511e1f3bba760f03de78ffe /src/core/Cam.cpp
parentFix CFont::PrintStringFromBottom (diff)
downloadre3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar.gz
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar.bz2
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar.lz
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar.xz
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.tar.zst
re3-8590457d41190c83fe75e265ffff8c73ae9d8d59.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 70d7c899..eedc16bb 100644
--- a/src/core/Cam.cpp
+++ b/src/core/Cam.cpp
@@ -5060,7 +5060,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