Minor tweaks.
This commit is contained in:
parent
c98c633b4d
commit
e856a8ce0a
3 changed files with 9 additions and 3 deletions
|
@ -191,8 +191,8 @@ fgSetDefaults ()
|
|||
// Freeze options
|
||||
fgSetBool("/sim/freeze/master", false);
|
||||
fgSetBool("/sim/freeze/position", false);
|
||||
fgSetBool("/sim/freeze/fuel", false);
|
||||
fgSetBool("/sim/freeze/time-of-day", false);
|
||||
fgSetBool("/sim/freeze/fuel", false);
|
||||
}
|
||||
|
||||
|
||||
|
@ -561,6 +561,10 @@ parse_option (const string& arg)
|
|||
fgSetBool("/sim/freeze/fuel", false);
|
||||
} else if ( arg == "--enable-fuel-freeze" ) {
|
||||
fgSetBool("/sim/freeze/fuel", true);
|
||||
} else if ( arg == "--disable-tod-freeze" ) {
|
||||
fgSetBool("/sim/freeze/time-of-day", false);
|
||||
} else if ( arg == "--enable-tod-freeze" ) {
|
||||
fgSetBool("/sim/freeze/time-of-day", true);
|
||||
} else if ( arg == "--disable-anti-alias-hud" ) {
|
||||
fgSetBool("/sim/hud/antialiased", false);
|
||||
} else if ( arg == "--enable-anti-alias-hud" ) {
|
||||
|
@ -1110,6 +1114,8 @@ fgUsage ()
|
|||
<< " --enable-freeze Start in a frozen state" << endl
|
||||
<< " --disable-fuel-freeze Fuel is consumed normally" << endl
|
||||
<< " --enable-fuel-freeze Fuel tank quantity forced to remain constant" << endl
|
||||
<< " --disable-tod-freeze Time of day advances normally" << endl
|
||||
<< " --enable-tod-freeze Do not advance time of day" << endl
|
||||
<< " --control=mode Primary control mode (joystick, keyboard," << endl
|
||||
<< " mouse)" << endl
|
||||
<< " --enable-auto-coordination Enable auto coordination" << endl
|
||||
|
|
|
@ -147,7 +147,7 @@ void HttpdChannel::foundTerminator (void) {
|
|||
response += "<HEAD>";
|
||||
response += getTerminator();
|
||||
|
||||
response += "<TITLE>HUD - ";
|
||||
response += "<TITLE>FlightGear - ";
|
||||
response += request;
|
||||
response += "</TITLE>";
|
||||
response += getTerminator();
|
||||
|
|
|
@ -177,7 +177,7 @@ void fgLIGHT::UpdateAdjFog( void ) {
|
|||
}
|
||||
if ( globals->get_current_view()->get_view_offset() < -2.0 * SGD_2PI ||
|
||||
globals->get_current_view()->get_view_offset() > 2.0 * SGD_2PI ) {
|
||||
SG_LOG( SG_EVENT, SG_ALERT, "Psi rotation bad = "
|
||||
SG_LOG( SG_EVENT, SG_ALERT, "current view()->view offset bad = "
|
||||
<< globals->get_current_view()->get_view_offset() );
|
||||
exit(-1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue