diff options
author | withmorten <morten.with@gmail.com> | 2021-01-20 13:57:03 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-01-20 13:59:17 +0100 |
commit | ba34d7218359ceb76dd525bdffbee5974505b425 (patch) | |
tree | dee7a06f574282ef4af6d2a963f1000bc7507a03 /src/core/Cam.cpp | |
parent | work on colourfilters (diff) | |
download | re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar.gz re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar.bz2 re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar.lz re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar.xz re3-ba34d7218359ceb76dd525bdffbee5974505b425.tar.zst re3-ba34d7218359ceb76dd525bdffbee5974505b425.zip |
Diffstat (limited to 'src/core/Cam.cpp')
-rw-r--r-- | src/core/Cam.cpp | 2 |
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 |