Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Fix inverted vertical camera
  • Loading branch information
withmorten committed Feb 5, 2021
1 parent 5385d00 commit 2bd8be587277af6a1239a19d0235888c85388f93
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/Cam.cpp
@@ -4631,7 +4631,7 @@ CCam::Process_FollowPed_Rotation(const CVector &CameraTarget, float TargetOrient
*/
{
LookLeftRight = -CPad::GetPad(0)->LookAroundLeftRight();
LookUpDown = -CPad::GetPad(0)->LookAroundUpDown();
LookUpDown = CPad::GetPad(0)->LookAroundUpDown();
}
float AlphaOffset, BetaOffset;
if(UseMouse){

0 comments on commit 2bd8be5

Please sign in to comment.