summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Vehicle.cpp
diff options
context:
space:
mode:
authorZach Charo <zach@zlau.net>2021-01-23 20:38:45 +0100
committerGitHub <noreply@github.com>2021-01-23 20:38:45 +0100
commit77051ddc786453b015791d81cb949d4891e5e59d (patch)
treec3dd8135775e6442e201e28dc038393e1a900d8b /src/vehicles/Vehicle.cpp
parentMerge branch 'miami' of github.com:GTAmodding/re3 into miami (diff)
downloadre3-77051ddc786453b015791d81cb949d4891e5e59d.tar
re3-77051ddc786453b015791d81cb949d4891e5e59d.tar.gz
re3-77051ddc786453b015791d81cb949d4891e5e59d.tar.bz2
re3-77051ddc786453b015791d81cb949d4891e5e59d.tar.lz
re3-77051ddc786453b015791d81cb949d4891e5e59d.tar.xz
re3-77051ddc786453b015791d81cb949d4891e5e59d.tar.zst
re3-77051ddc786453b015791d81cb949d4891e5e59d.zip
Diffstat (limited to '')
-rw-r--r--src/vehicles/Vehicle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Vehicle.cpp b/src/vehicles/Vehicle.cpp
index f083e0f6..228c4f66 100644
--- a/src/vehicles/Vehicle.cpp
+++ b/src/vehicles/Vehicle.cpp
@@ -328,7 +328,7 @@ CVehicle::FlyingControl(eFlightModel flightModel)
case FLIGHT_MODEL_PLANE:
{
float fSteerLR = CPad::GetPad(0)->GetSteeringLeftRight() / 128.0f;
- float fSteerUD = -CPad::GetPad(0)->GetSteeringUpDown() / 128.0f;
+ float fSteerUD = CPad::GetPad(0)->GetSteeringUpDown() / 128.0f;
float fGunUD = Abs(CPad::GetPad(0)->GetCarGunUpDown());
if(fGunUD > 1.0f)
fSteerUD = -CPad::GetPad(0)->GetCarGunUpDown() / 128.0f;