diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-06-05 22:13:31 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-06-05 22:13:34 +0200 |
commit | f045ce438696d2425b7a3058f12ee04098fb1597 (patch) | |
tree | 7e4d3faf3099e138aa408113624b6c4346497572 /src/vehicles/Bike.cpp | |
parent | fix (diff) | |
download | re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar.gz re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar.bz2 re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar.lz re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar.xz re3-f045ce438696d2425b7a3058f12ee04098fb1597.tar.zst re3-f045ce438696d2425b7a3058f12ee04098fb1597.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Bike.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vehicles/Bike.cpp b/src/vehicles/Bike.cpp index e6a82288..e7dad2df 100644 --- a/src/vehicles/Bike.cpp +++ b/src/vehicles/Bike.cpp @@ -86,8 +86,8 @@ CBike::CBike(int32 id, uint8 CreatedBy) m_fGasPedal = 0.0f; m_fBrakePedal = 0.0f; m_fLeanInput = 0.0f; - field_478 = 0; - field_47C = 0; + m_fPedLeanAmountLR = 0.0f; + m_fPedLeanAmountUD = 0.0f; m_pSetOnFireEntity = nil; m_pBombRigger = nil; m_fGasPedalAudio = 0.0f; @@ -307,8 +307,8 @@ CBike::ProcessControl(void) m_nCarHornTimer = 0; bCanStand = (pDriver || pPassengers[0] || bIsBeingCarJacked) && !bIsStanding; - field_478 = 0; - field_47C = 0; + m_fPedLeanAmountLR = 0.0f; + m_fPedLeanAmountUD = 0.0f; m_bike_flag80 = false; if(bIsBeingCarJacked){ @@ -331,8 +331,8 @@ CBike::ProcessControl(void) bCanStand = false; m_bike_flag80 = false; - field_478 = 0; - field_47C = 0; + m_fPedLeanAmountLR = 0.0f; + m_fPedLeanAmountUD = 0.0f; break; case STATUS_PLAYER_DISABLED: |