- fix low wheel temperature to 30.0° (for Leillo's video) was be removed after

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7834 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3356abe1ffae46aca1d416a62e552b8b470400f9
Former-commit-id: 885d09fbbebf6194c7433599303caaf01b4fdaa3
This commit is contained in:
torcs-ng 2021-12-21 09:48:40 +00:00
parent 933c5d9a0e
commit 48afc3b311

View file

@ -558,6 +558,9 @@ void SimWheelUpdateForce(tCar *car, int index)
//air cooling
wheel->Ttire -= wheel->aircoolm * (1 + wheel->speedcoolm * v) * (wheel->Ttire - Tair) * SimDeltaTime;
if (wheel->Ttire < 303.0)
wheel->Ttire = 303.0; // just for Leillo's video christmas
//tire wear
if(wheel->treadDepth > 0.0)
{