diff --git a/src/Hacks/Show Trajectory/Trajectory.cpp b/src/Hacks/Show Trajectory/Trajectory.cpp index cb49373..e54cef6 100644 --- a/src/Hacks/Show Trajectory/Trajectory.cpp +++ b/src/Hacks/Show Trajectory/Trajectory.cpp @@ -5,6 +5,8 @@ void drawSegmentAlternative(CCDrawNode* drawNode, const CCPoint& startPoint, const CCPoint& endPoint, float radius, const ccColor4F& color) // taken from the depths of google { + return; + CCPoint direction = ccpNormalize(ccpSub(endPoint, startPoint)); CCPoint perpendicular = ccp(-direction.y, direction.x);