Reverted Pad.cpp to previous state.

This commit is contained in:
_AG 2019-06-27 07:38:35 +02:00
parent 69ac8bcd7a
commit 1ac4173446

View File

@ -1674,26 +1674,30 @@ int16 CPad::SniperModeLookUpDown(void)
int16 CPad::LookAroundLeftRight(void)
{
int16 axis = NewState.RightStickX;
float axis = GetPad(0)->NewState.RightStickX;
if ( fabs(axis) > 65 && !GetLookBehindForPed() )
return ((axis > 0 ? axis - 65 : axis + 65) * ((255 - 65) / (127 - 32)));
if ( fabs(axis) > 85 && !GetLookBehindForPed() )
return (int16) ( (axis + ( axis > 0 ) ? -85 : 85)
* (127.0f / 32.0f) ); // 3.96875f
else if (TheCamera.Cams[0].Using3rdPersonMouseCam() && fabs(axis) > 10)
return (axis);
else if ( TheCamera.Cams[0].Using3rdPersonMouseCam() && fabs(axis) > 10 )
return (int16) ( (axis + ( axis > 0 ) ? -10 : 10)
* (127.0f / 64.0f) ); // 1.984375f
return 0;
}
int16 CPad::LookAroundUpDown(void)
{
int16 axis = NewState.RightStickY;
int16 axis = GetPad(0)->NewState.RightStickY;
if (fabs(axis) > 65 && !GetLookBehindForPed())
return ((axis > 0 ? axis - 65 : axis + 65) * ((255 - 65) / (127 - 32)));
if ( abs(axis) > 85 && !GetLookBehindForPed() )
return (int16) ( (axis + ( axis > 0 ) ? -85 : 85)
* (127.0f / 32.0f) ); // 3.96875f
else if (TheCamera.Cams[0].Using3rdPersonMouseCam() && fabs(axis) > 10)
return (axis);
else if ( TheCamera.Cams[0].Using3rdPersonMouseCam() && abs(axis) > 40 )
return (int16) ( (axis + ( axis > 0 ) ? -40 : 40)
* (127.0f / 64.0f) ); // 1.984375f
return 0;
}