From: Thomas Geymayer Date: Wed, 26 Feb 2014 23:20:06 +0000 (+0100) Subject: Autopilot: fix wrong warning for unknown node X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=831f75a0309fd8ef729f7f2407c17e13cccf0bd9;p=flightgear.git Autopilot: fix wrong warning for unknown node --- diff --git a/src/Autopilot/component.cxx b/src/Autopilot/component.cxx index 429e9a414..d0b39025c 100644 --- a/src/Autopilot/component.cxx +++ b/src/Autopilot/component.cxx @@ -72,7 +72,11 @@ bool Component::configure( SGPropertyNode& cfg_node, { _name = cfg_node.getStringValue(); return true; - } + } + + if( cfg_name == "update-interval-secs" ) + // This is handled in autopilot.cxx + return true; if ( cfg_name == "debug" ) {