1
0
Fork 0

Fix MSVC compile error

This commit is contained in:
Torsten Dreyer 2015-06-08 13:19:51 +02:00
parent 0f90a2e9f3
commit 4b564b2555

View file

@ -385,7 +385,7 @@ void FGAIMultiplayer::update(double dt)
// not doing rotationnal prediction for small speed or rotation rate,
// to avoid agitated parked plane
if (( norm(angularVel) > 0.05 ) or ( normVel > 1.0 )) {
if (( norm(angularVel) > 0.05 ) || ( normVel > 1.0 )) {
ecOrient += t*ecOrient.derivative(angularVel);
}