]> git.mxchange.org Git - flightgear.git/commitdiff
#901, yasim report the wrong sign in side-slip-deg and -rad.
authorjanodesbois <jean.pellotier@wanadoo.fr>
Fri, 16 Aug 2013 21:19:11 +0000 (23:19 +0200)
committerJames Turner <zakalawe@mac.com>
Thu, 5 Sep 2013 07:28:40 +0000 (08:28 +0100)
src/FDM/YASim/YASim.cxx

index 03f55217be0ca35c73e763862f868738891a8b09..01181d3169fc33e7afc0ecd408b032a92ce31694 100644 (file)
@@ -513,7 +513,7 @@ void YASim::copyFromYASim()
     float alpha, beta;
     Glue::calcAlphaBeta(s, wind, &alpha, &beta);
     _set_Alpha(alpha);
-    _set_Beta(beta);
+    _set_Beta(-beta);
 
     float tmp[9];
     Math::trans33(xyz2ned, tmp);