]> git.mxchange.org Git - flightgear.git/commitdiff
Periodically the turn coordinator is jammed all the way to one side.
authorcurt <curt>
Tue, 4 Feb 2003 17:23:21 +0000 (17:23 +0000)
committercurt <curt>
Tue, 4 Feb 2003 17:23:21 +0000 (17:23 +0000)
Initialize _last_rate to 0 at start up to hopefully avoid this.

src/Instrumentation/turn_indicator.cxx

index 6cdaef9dc18cf15326df7a1a9399d5a7c3a92f73..6d4faedaa8d49d568e2f674e26bf5784c5e9306b 100644 (file)
@@ -13,7 +13,8 @@
 #define RESPONSIVENESS 0.25
 
 
-TurnIndicator::TurnIndicator ()
+TurnIndicator::TurnIndicator () :
+    _last_rate(0)
 {
 }