From 56382700f087c09abf3cfaa1224e161c51babc25 Mon Sep 17 00:00:00 2001 From: frohlich Date: Sat, 6 Jan 2007 16:20:49 +0000 Subject: [PATCH] Modified Files: groundcache.cxx: Return cat start and end in the correct order. That makes the seahawk carrier start capable again ... --- src/FDM/groundcache.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.5