diff options
author | aap <aap@papnet.eu> | 2020-06-07 00:01:48 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-06-07 00:01:59 +0200 |
commit | 5711159e684e0612739ee66d3cd7e4444c7dc72d (patch) | |
tree | 85b6b6eb77087268c3c0134561913833deef892c /src/vehicles/Vehicle.cpp | |
parent | fix (diff) | |
download | re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar.gz re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar.bz2 re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar.lz re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar.xz re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.tar.zst re3-5711159e684e0612739ee66d3cd7e4444c7dc72d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Vehicle.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vehicles/Vehicle.cpp b/src/vehicles/Vehicle.cpp index c5537a48..a30429bf 100644 --- a/src/vehicles/Vehicle.cpp +++ b/src/vehicles/Vehicle.cpp @@ -748,7 +748,7 @@ CVehicle::ProcessWheel(CVector &wheelFwd, CVector &wheelRight, CVector &wheelCon static bool bBraking; static bool bDriving; -#ifdef FIX_BUGS +#ifdef FIX_SIGNIFICANT_BUGS bAlreadySkidding = false; #endif @@ -903,7 +903,7 @@ CVehicle::ProcessBikeWheel(CVector &wheelFwd, CVector &wheelRight, CVector &whee static bool bDriving; static bool bReversing; -#ifdef FIX_BUGS +#ifdef FIX_SIGNIFICANT_BUGS bAlreadySkidding = false; #endif @@ -1032,7 +1032,6 @@ CVehicle::ProcessBikeWheel(CVector &wheelFwd, CVector &wheelRight, CVector &whee float impulse = speed*m_fMass; float turnImpulse = speed*GetMass(wheelContactPoint, direction); CVector vTurnImpulse = turnImpulse * direction; - ApplyMoveForce(impulse * direction); float turnRight = DotProduct(vTurnImpulse, GetRight()); |