mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-09 22:20:33 +00:00
fixes for braking and cloud rotation at high fps
This commit is contained in:
parent
2d4861454c
commit
68f1c03a85
2 changed files with 10 additions and 0 deletions
|
@ -521,6 +521,9 @@ CVehicle::ProcessWheel(CVector &wheelFwd, CVector &wheelRight, CVector &wheelCon
|
|||
brake = 0.2f * mod_HandlingManager.field_4 / m_fMass;
|
||||
else
|
||||
brake = mod_HandlingManager.field_4 / m_fMass;
|
||||
#ifdef FIX_BUGS
|
||||
brake *= CTimer::GetTimeStepFix();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue