diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-10-08 20:46:00 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-10-08 21:41:51 +0200 |
commit | 73a3e9d5bb3a12812926b487a17c36dd4381ebc2 (patch) | |
tree | 598f7ad80dceb628edd3c6c7943f1b54a3374208 /src/core | |
parent | Merge pull request #750 from erorcun/miami (diff) | |
download | re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar.gz re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar.bz2 re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar.lz re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar.xz re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.tar.zst re3-73a3e9d5bb3a12812926b487a17c36dd4381ebc2.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/Pad.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/Pad.cpp b/src/core/Pad.cpp index aa6e5cc8..b723eb1d 100644 --- a/src/core/Pad.cpp +++ b/src/core/Pad.cpp @@ -3209,7 +3209,7 @@ int16 CPad::SniperModeLookLeftRight(void) if ( Abs(axis) > Abs(dpad) ) { if ( Abs(axis) > 35.0f ) { - return (axis > 0.f ? axis - 35.f : axis + 35.f) * 1.3763441f; + return (axis > 0.f ? axis - 35.f : axis + 35.f) * (128.f / (128 - 35)); } else { return 0; } @@ -3231,7 +3231,7 @@ int16 CPad::SniperModeLookUpDown(void) if ( Abs(axis) > Abs(dpad) ) { if ( Abs(axis) > 35.0f ) { - return (axis > 0.f ? axis - 35.f : axis + 35.f) * 1.3763441f; + return (axis > 0.f ? axis - 35.f : axis + 35.f) * (128.f / (128 - 35)); } else { return 0; } @@ -3573,4 +3573,4 @@ void CPad::FixPadsAfterSave(void) bObsoleteControllerMessage = false; GetPad(0)->Phase = 0; } -}
\ No newline at end of file +} |