diff options
author | Zach Charo <zach@zlau.net> | 2021-01-23 13:38:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 13:38:45 -0600 |
commit | 77051ddc786453b015791d81cb949d4891e5e59d (patch) | |
tree | c3dd8135775e6442e201e28dc038393e1a900d8b | |
parent | e145593c28542917a2591b39329f37a2e9ed0374 (diff) |
Update Vehicle.cpp
-rw-r--r-- | src/vehicles/Vehicle.cpp | 2 |
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; |