]> git.mxchange.org Git - flightgear.git/commitdiff
Modified Files:
authorfrohlich <frohlich>
Sat, 6 Jan 2007 16:20:49 +0000 (16:20 +0000)
committerfrohlich <frohlich>
Sat, 6 Jan 2007 16:20:49 +0000 (16:20 +0000)
groundcache.cxx: Return cat start and end in the correct order.
That makes the seahawk carrier start capable again ...

src/FDM/groundcache.cxx

index 1fad256c5dde314f16835c4609b61118b1cc416d..4bbdfef82e58e26ef96ba11962daac0069b551f8 100644 (file)
@@ -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 {