From: janodesbois Date: Fri, 16 Aug 2013 21:19:11 +0000 (+0200) Subject: #901, yasim report the wrong sign in side-slip-deg and -rad. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=04764f828846343e0fdb447fbcf39e6bbf022229;p=flightgear.git #901, yasim report the wrong sign in side-slip-deg and -rad. --- diff --git a/src/FDM/YASim/YASim.cxx b/src/FDM/YASim/YASim.cxx index 03f55217b..01181d316 100644 --- a/src/FDM/YASim/YASim.cxx +++ b/src/FDM/YASim/YASim.cxx @@ -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);