From 1ac41734465d28bdb2b641bc1b039e27c9b56786 Mon Sep 17 00:00:00 2001 From: _AG Date: Thu, 27 Jun 2019 07:38:35 +0200 Subject: Reverted Pad.cpp to previous state. --- src/Pad.cpp | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/src/Pad.cpp b/src/Pad.cpp index 2e3f1c53..61b7ed06 100644 --- a/src/Pad.cpp +++ b/src/Pad.cpp @@ -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; } -- cgit v1.2.3