fix another missing semicolon

This commit is contained in:
Andrew Meadows 2014-02-25 11:19:07 -08:00
parent 28d9fb9747
commit 362708be60

View file

@ -285,7 +285,7 @@ bool capsuleCapsule(const CapsuleShape* capsuleA, const CapsuleShape* capsuleB,
// average the internal pair, and then do the math from centerB
collision._contactPoint = centerB + (0.5f * (points[1] + points[2])) * axisB
+ (capsuleA->getRadius() - distance) * BA
+ (capsuleA->getRadius() - distance) * BA;
return true;
}
}