diff options
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index a09e184e..6fac4ec1 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -1595,7 +1595,7 @@ CAutomobile::ProcessControl(void) if(this == FindPlayerVehicle()) // BUG: this only observes one of the wheels - TheCamera.m_bVehicleSuspenHigh = suspChange > 0.05f; + TheCamera.m_bVehicleSuspenHigh = Abs(suspChange) > 0.05f; m_aSuspensionSpringRatioPrev[i] = m_aSuspensionSpringRatio[i]; m_aSuspensionSpringRatio[i] = 1.0f; |