1
0
Fork 0

Fix a typo so that turbulence can work in JSBSim models once again.

This commit is contained in:
curt 2006-10-19 02:39:05 +00:00
parent bdf16b7b7e
commit 39869b582a

View file

@ -261,7 +261,7 @@ void FGAtmosphere::CalculateDerived(void)
T_dev = (*temperature) - GetTemperature(h);
density_altitude = h + T_dev * 66.7;
if (turbType != ttStandard) {
if (turbType == ttStandard) {
Turbulence();
vWindNED += vTurbulence;
}