From: curt Date: Tue, 4 Feb 2003 17:23:21 +0000 (+0000) Subject: Periodically the turn coordinator is jammed all the way to one side. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8228afdbac4f73f762f1d87c4e9c5519c1b5f6ad;p=flightgear.git Periodically the turn coordinator is jammed all the way to one side. Initialize _last_rate to 0 at start up to hopefully avoid this. --- diff --git a/src/Instrumentation/turn_indicator.cxx b/src/Instrumentation/turn_indicator.cxx index 6cdaef9dc..6d4faedaa 100644 --- a/src/Instrumentation/turn_indicator.cxx +++ b/src/Instrumentation/turn_indicator.cxx @@ -13,7 +13,8 @@ #define RESPONSIVENESS 0.25 -TurnIndicator::TurnIndicator () +TurnIndicator::TurnIndicator () : + _last_rate(0) { }