1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Change the plugin names to match inclusion of both X-Plane 9 & 10

This commit is contained in:
Kevin Finisterre 2015-04-27 15:47:48 -04:00
parent 0f9218d3af
commit 996d8a8f48

View File

@ -58,7 +58,8 @@ bool HITLPlugin::initialize(const QStringList & args, QString *errMsg)
addSimulator(new AeroSimRCSimulatorCreator("ASimRC", "AeroSimRC"));
addSimulator(new FGSimulatorCreator("FG", "FlightGear"));
addSimulator(new IL2SimulatorCreator("IL2", "IL2"));
addSimulator(new XplaneSimulatorCreator("X-Plane", "X-Plane"));
addSimulator(new XplaneSimulatorCreator9("X-Plane9", "X-Plane9"));
addSimulator(new XplaneSimulatorCreator10("X-Plane10", "X-Plane10"));
return true;
}