Small bug fix
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4610 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: aa6ad0dd07a3af8a9ddf932724bb681f9269c6de Former-commit-id: 81dad735e3fce4cd068491fc494a67c4e59476de
This commit is contained in:
parent
1f1b5aca1c
commit
6bad1b4985
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ bool TDriver::AdvancedParameters = false; // Advanced parameters
|
|||
bool TDriver::UseOldSkilling = false; // Use old skilling
|
||||
bool TDriver::UseSCSkilling = false; // Use supercar skilling
|
||||
bool TDriver::UseMPA1Skilling = false; // Use mpa1 car skilling
|
||||
float TDriver::SkillingFactor = 0.1; // Skilling factor for career-mode
|
||||
float TDriver::SkillingFactor = 0.1f; // Skilling factor for career-mode
|
||||
bool TDriver::UseBrakeLimit = false; // Use brake limit
|
||||
bool TDriver::UseGPBrakeLimit = false; // Use brake limit GP36
|
||||
float TDriver::BrakeLimit = -6; // Brake limit
|
||||
|
@ -2948,7 +2948,7 @@ void TDriver::EvaluateCollisionFlags(
|
|||
((OppInfo.CatchTime < ColTime) && OppInfo.GotFlags(F_COLLIDE))
|
||||
|| ((OppInfo.CatchTime < CatTime) && OppInfo.GotFlags(F_CATCHING))
|
||||
|| ((OppInfo.CatchAccTime < CacTime) && OppInfo.GotFlags(F_CATCHING_ACC))
|
||||
|| ((OppCar->CatchSpeed < 0.9 * oTargetSpeed) && (OppInfo.State.RelPos < 30));
|
||||
|| ((OppInfo.CatchSpeed < 0.9 * oTargetSpeed) && (OppInfo.State.RelPos < 30));
|
||||
|
||||
if (!IgnoreTeamMate &&
|
||||
(OppInfo.AvoidLatchTime > 0
|
||||
|
|
Loading…
Reference in a new issue