update surface.xml and changes formulas in raceweather.cpp

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

Former-commit-id: 4be0a4ebe96edb6899099381b11f86ca3b333cc9
Former-commit-id: 686d2703039985f55ebc3c06d7661572a5bfd016
This commit is contained in:
torcs-ng 2010-05-09 22:08:12 +00:00
parent ab8a0341fb
commit 0deb06506e

View file

@ -97,14 +97,14 @@ void ReTrackUpdate(void)
}
case 2:
{
curSurf->kFriction = curSurf->kFriction2 - 0.05f;
curSurf->kFriction = curSurf->kFriction2 * 0.8f;
curSurf->kRollRes = curSurf->kRollRes2;;
printf("Friction = %f - RollRes = %f\n", curSurf->kFriction, curSurf->kRollRes);
break;
}
case 3:
{
curSurf->kFriction = curSurf->kFriction2 - 0.08f;
curSurf->kFriction = curSurf->kFriction2 * 0.6f;
curSurf->kRollRes = curSurf->kRollRes2;
printf("Friction = %f - RollRes = %f\n", curSurf->kFriction, curSurf->kRollRes);
break;