From: Torsten Dreyer Date: Thu, 19 Dec 2013 08:40:24 +0000 (+0100) Subject: autopilot: add the forgotten RateLimitFilter X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d1cae3ab4dfa53c0f41b1136ec04a14027ed4f74;p=flightgear.git autopilot: add the forgotten RateLimitFilter --- diff --git a/src/Autopilot/digitalfilter.cxx b/src/Autopilot/digitalfilter.cxx index 23a5523c0..99eabafe3 100644 --- a/src/Autopilot/digitalfilter.cxx +++ b/src/Autopilot/digitalfilter.cxx @@ -610,6 +610,7 @@ bool DigitalFilter::configure(const string& nodeName, SGPropertyNode_ptr configN componentForge["double-exponential"] = new CreateAndConfigureFunctor(); componentForge["moving-average"] = new CreateAndConfigureFunctor(); componentForge["noise-spike"] = new CreateAndConfigureFunctor(); + componentForge["rate-limit"] = new CreateAndConfigureFunctor(); componentForge["reciprocal"] = new CreateAndConfigureFunctor(); componentForge["derivative"] = new CreateAndConfigureFunctor(); componentForge["high-pass"] = new CreateAndConfigureFunctor();