Wire in the balloon sim.
This commit is contained in:
parent
802af70258
commit
0b55a915b4
2 changed files with 5 additions and 4 deletions
|
@ -36,6 +36,7 @@ fgfs_LDADD = \
|
|||
$(top_builddir)/Simulator/Cockpit/libCockpit.a \
|
||||
$(top_builddir)/Simulator/Controls/libControls.a \
|
||||
$(top_builddir)/Simulator/FDM/libFlight.a \
|
||||
$(top_builddir)/Simulator/FDM/Balloon/libBalloon.a \
|
||||
$(top_builddir)/Simulator/FDM/External/libExternal.a \
|
||||
$(top_builddir)/Simulator/FDM/JSBsim/libJSBsim.a \
|
||||
$(top_builddir)/Simulator/FDM/LaRCsim/libLaRCsim.a \
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#include <Astro/solarsystem.hxx>
|
||||
#include <Autopilot/autopilot.hxx>
|
||||
#include <Cockpit/cockpit.hxx>
|
||||
// #include <FDM/Balloon.h>
|
||||
#include <FDM/Balloon.h>
|
||||
#include <FDM/JSBsim.hxx>
|
||||
#include <FDM/LaRCsim.hxx>
|
||||
#include <FDM/MagicCarpet.hxx>
|
||||
|
@ -232,9 +232,9 @@ bool fgInitSubsystems( void ) {
|
|||
cur_fdm_state = new FGLaRCsim;
|
||||
} else if ( current_options.get_flight_model() == FGInterface::FG_JSBSIM ) {
|
||||
cur_fdm_state = new FGJSBsim;
|
||||
// } else if ( current_options.get_flight_model() ==
|
||||
// FGInterface::FG_BALLOONSIM ) {
|
||||
// cur_fdm_state = new FGBalloonSim;
|
||||
} else if ( current_options.get_flight_model() ==
|
||||
FGInterface::FG_BALLOONSIM ) {
|
||||
cur_fdm_state = new FGBalloonSim;
|
||||
} else if ( current_options.get_flight_model() ==
|
||||
FGInterface::FG_MAGICCARPET ) {
|
||||
cur_fdm_state = new FGMagicCarpet;
|
||||
|
|
Loading…
Add table
Reference in a new issue