mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 02:29:01 +00:00
Fix inverted vertical camera
This commit is contained in:
parent
5385d004ec
commit
2bd8be5872
1 changed files with 1 additions and 1 deletions
|
@ -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){
|
||||
|
|
Loading…
Reference in a new issue