Commit 9636a56a authored by Lorenz Meier's avatar Lorenz Meier

Fixed call to sin/cos.

parent 639fbf31
......@@ -554,8 +554,8 @@ void QGCXPlaneLink::readBytes()
double sinPhi = sin(roll);
double cosThe = cos(pitch);
double sinThe = sin(pitch);
double cosPsi = cos(0);
double sinPsi = sin(0);
double cosPsi = cos(0.0);
double sinPsi = sin(0.0);
float dcm[3][3];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment