]> git.mxchange.org Git - flightgear.git/commitdiff
Fix MSVC compile error
authorTorsten Dreyer <Torsten@t3r.de>
Mon, 8 Jun 2015 11:19:51 +0000 (13:19 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Mon, 8 Jun 2015 11:19:51 +0000 (13:19 +0200)
src/AIModel/AIMultiplayer.cxx

index 7021269f3413c25f5eb6838ff45da6dc5f7f1b86..f79ca4153f8aebb08d70f54165a1613ef5b88e58 100644 (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);
        }