Fixed compilation problem (no idea why it ever compiled on VS).

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@4423 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2010-01-10 22:50:13 +00:00
parent 2f268dce77
commit 9eb8995399

View File

@@ -239,7 +239,7 @@ void Physics::KartKartCollision(Kart *kartA, Kart *kartB)
Vec3 side((orientation>=0) ? -1.0f : 1.0f, 0, 0);
float speed_frac = faster_kart->getSpeed()/faster_kart->getMaxSpeed();
Vec3 impulse =
faster_kart->getTrans().getRotation()*side*side_impulse*speed_frac;
faster_kart->getTrans().getBasis()*side*side_impulse*speed_frac;
printf("orientation is %f impulse is %f %f %f\n",
orientation, impulse.getX(),impulse.getY(),impulse.getZ());
slower_kart->getBody()->applyCentralImpulse(impulse);