Tweak to the --atc610x option.
This commit is contained in:
parent
b5f7761861
commit
d82ce71d28
2 changed files with 6 additions and 1 deletions
|
@ -108,6 +108,11 @@ FGIO::parse_port_config( const string& config )
|
||||||
if ( protocol == "atc610x" ) {
|
if ( protocol == "atc610x" ) {
|
||||||
FGATC610x *atc610x = new FGATC610x;
|
FGATC610x *atc610x = new FGATC610x;
|
||||||
atc610x->set_hz( 30 );
|
atc610x->set_hz( 30 );
|
||||||
|
if ( tokens.size() > 1 ) {
|
||||||
|
if ( tokens[1] == "no-rudder" ) {
|
||||||
|
atc610x->set_use_rudder( false );
|
||||||
|
}
|
||||||
|
}
|
||||||
return atc610x;
|
return atc610x;
|
||||||
} else if ( protocol == "atlas" ) {
|
} else if ( protocol == "atlas" ) {
|
||||||
FGAtlas *atlas = new FGAtlas;
|
FGAtlas *atlas = new FGAtlas;
|
||||||
|
|
|
@ -1153,7 +1153,7 @@ struct OptionDesc {
|
||||||
{"start-date-gmt", true, OPTION_FUNC, "", false, "", fgOptStartDateGmt },
|
{"start-date-gmt", true, OPTION_FUNC, "", false, "", fgOptStartDateGmt },
|
||||||
{"hud-tris", false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
|
{"hud-tris", false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "tris", 0 },
|
||||||
{"hud-culled", false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
|
{"hud-culled", false, OPTION_STRING, "/sim/hud/frame-stat-type", false, "culled", 0 },
|
||||||
{"atc610x", false, OPTION_CHANNEL, "", false, "dummy", 0 },
|
{"atc610x", true, OPTION_CHANNEL, "", false, "dummy", 0 },
|
||||||
{"atlas", true, OPTION_CHANNEL, "", false, "", 0 },
|
{"atlas", true, OPTION_CHANNEL, "", false, "", 0 },
|
||||||
{"httpd", true, OPTION_CHANNEL, "", false, "", 0 },
|
{"httpd", true, OPTION_CHANNEL, "", false, "", 0 },
|
||||||
#ifdef FG_JPEG_SERVER
|
#ifdef FG_JPEG_SERVER
|
||||||
|
|
Loading…
Add table
Reference in a new issue