]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/turn_indicator.cxx
Fix line endings
[flightgear.git] / src / Instrumentation / turn_indicator.cxx
index be03a8879beadb07fe2cc294ec788c604831da82..f04c33369d080600975f2901f092710f3313d168 100644 (file)
@@ -94,7 +94,8 @@ void
 TurnIndicator::update (double dt)
 {
                                 // Get the spin from the gyro
-    _gyro.set_power_norm(_electric_current_node->getDoubleValue()/60.0);
+    double power = _electric_current_node->getDoubleValue() / 24.0;
+    _gyro.set_power_norm(power);
     _gyro.update(dt);
     double spin = _gyro.get_spin_norm();