Fix MSVC compile error
This commit is contained in:
parent
0f90a2e9f3
commit
4b564b2555
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue