- fix shadow's driver pit stop on kurpfalzring (and normaly for all tracks)

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9127 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
torcs-ng 2023-08-23 13:41:13 +00:00
parent f3a5a5a564
commit 4d3ab98d53
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ void PitPath::MakePath(
double sign = (pPitInfo->side == TR_LFT) ? -1.0 : 1.0;
{for( int i = 1; i < NPOINTS - 1; i++ )
{
y[i] = fabs(pPitInfo->driversPits->pos.toMiddle) - pPitInfo->width;
y[i] = fabs(pPitInfo->driversPits->pos.toMiddle) - 0.3 * pPitInfo->width -2.2;
y[i] *= sign;
}}