From: frohlich Date: Sat, 6 Jan 2007 16:20:49 +0000 (+0000) Subject: Modified Files: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=56382700f087c09abf3cfaa1224e161c51babc25;p=flightgear.git Modified Files: groundcache.cxx: Return cat start and end in the correct order. That makes the seahawk carrier start capable again ... --- diff --git a/src/FDM/groundcache.cxx b/src/FDM/groundcache.cxx index 1fad256c5..4bbdfef82 100644 --- a/src/FDM/groundcache.cxx +++ b/src/FDM/groundcache.cxx @@ -578,7 +578,7 @@ public: // Trick to get the ends in the right order. // Use the x axis in the original coordinate system. Choose the // most negative x-axis as the one pointing forward - if (v1[0] < v2[0]) { + if (v1[0] > v2[0]) { cat.start = gv1; cat.end = gv2; } else {