1
0
Fork 0

Autopilot: fix wrong warning for unknown node

This commit is contained in:
Thomas Geymayer 2014-02-27 00:20:06 +01:00
parent 44242df377
commit 831f75a030

View file

@ -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" )
{