this patch correct the cloud repositionning that
made them going against the wind. Now the clouds
and the windsock show the same direction.
}
if (sp_dist > 0) {
- bx = cos(-direction * SGD_DEGREES_TO_RADIANS) * sp_dist;
- by = sin(-direction * SGD_DEGREES_TO_RADIANS) * sp_dist;
+ bx = cos((180.0-direction) * SGD_DEGREES_TO_RADIANS) * sp_dist;
+ by = sin((180.0-direction) * SGD_DEGREES_TO_RADIANS) * sp_dist;
}