From: Thomas Geymayer Date: Fri, 11 Jul 2014 17:25:26 +0000 (+0200) Subject: Fix subsystemFactory name fdm -> flight (Thanks to Hooray). X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a52c0882a14aa3e4e6edd3f94dab0d5f8f0270c3;p=flightgear.git Fix subsystemFactory name fdm -> flight (Thanks to Hooray). --- diff --git a/src/Main/subsystemFactory.cxx b/src/Main/subsystemFactory.cxx index 2a8d7e56a..b0729d64b 100644 --- a/src/Main/subsystemFactory.cxx +++ b/src/Main/subsystemFactory.cxx @@ -77,7 +77,7 @@ SGSubsystem* createSubsystemByName(const std::string& name) MAKE_SUB(FGSoundManager, "sound"); MAKE_SUB(FGInterpolator, "prop-interpolator") MAKE_SUB(FGProperties, "properties"); - MAKE_SUB(FDMShell, "fdm"); + MAKE_SUB(FDMShell, "flight"); MAKE_SUB(FGEnvironmentMgr, "environment"); MAKE_SUB(Ephemeris, "ephemeris"); MAKE_SUB(FGSystemMgr, "aircraft-systems");