From 362708be603e49acdf3cf8f01319b3174d17979d Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 25 Feb 2014 11:19:07 -0800 Subject: [PATCH] fix another missing semicolon --- libraries/shared/src/ShapeCollider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/ShapeCollider.cpp b/libraries/shared/src/ShapeCollider.cpp index 897816ce0d..bef31a8e41 100644 --- a/libraries/shared/src/ShapeCollider.cpp +++ b/libraries/shared/src/ShapeCollider.cpp @@ -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; } }