diff options
author | aap <aap@papnet.eu> | 2019-06-27 09:46:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 09:46:41 +0200 |
commit | 62b6788dc544a20b8dc5c5175c23fcac6736af65 (patch) | |
tree | c30f3c1a937c39393fc9471902f7dbe83a17a4c2 /src/Pad.cpp | |
parent | Merge pull request #57 from gennariarmando/master (diff) | |
parent | Merge branch 'master' of git://github.com/GTAmodding/re3 into erorcun (diff) | |
download | re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar.gz re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar.bz2 re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar.lz re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar.xz re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.tar.zst re3-62b6788dc544a20b8dc5c5175c23fcac6736af65.zip |
Diffstat (limited to 'src/Pad.cpp')
-rw-r--r-- | src/Pad.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Pad.cpp b/src/Pad.cpp index 61b7ed06..e6f36efd 100644 --- a/src/Pad.cpp +++ b/src/Pad.cpp @@ -1677,11 +1677,11 @@ int16 CPad::LookAroundLeftRight(void) float axis = GetPad(0)->NewState.RightStickX; if ( fabs(axis) > 85 && !GetLookBehindForPed() ) - return (int16) ( (axis + ( axis > 0 ) ? -85 : 85) + return (int16) ( (axis + ( ( axis > 0 ) ? -85 : 85) ) * (127.0f / 32.0f) ); // 3.96875f else if ( TheCamera.Cams[0].Using3rdPersonMouseCam() && fabs(axis) > 10 ) - return (int16) ( (axis + ( axis > 0 ) ? -10 : 10) + return (int16) ( (axis + ( ( axis > 0 ) ? -10 : 10) ) * (127.0f / 64.0f) ); // 1.984375f return 0; @@ -1692,11 +1692,11 @@ int16 CPad::LookAroundUpDown(void) int16 axis = GetPad(0)->NewState.RightStickY; if ( abs(axis) > 85 && !GetLookBehindForPed() ) - return (int16) ( (axis + ( axis > 0 ) ? -85 : 85) + return (int16) ( (axis + ( ( axis > 0 ) ? -85 : 85) ) * (127.0f / 32.0f) ); // 3.96875f else if ( TheCamera.Cams[0].Using3rdPersonMouseCam() && abs(axis) > 40 ) - return (int16) ( (axis + ( axis > 0 ) ? -40 : 40) + return (int16) ( (axis + ( ( axis > 0 ) ? -40 : 40) ) * (127.0f / 64.0f) ); // 1.984375f return 0; |