From: curt Date: Sun, 20 Jan 2002 05:59:28 +0000 (+0000) Subject: Add --enable/disable-fuel-freeze command line options. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=766b07d7243c6ebe7fba34589fc50ba89592bfef;p=flightgear.git Add --enable/disable-fuel-freeze command line options. --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index eda548ad3..57d98a53b 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -557,6 +557,10 @@ parse_option (const string& arg) fgSetBool("/sim/freeze/master", false); } else if ( arg == "--enable-freeze" ) { fgSetBool("/sim/freeze/master", true); + } else if ( arg == "--disable-fuel-freeze" ) { + fgSetBool("/sim/freeze/fuel", false); + } else if ( arg == "--enable-fuel-freeze" ) { + fgSetBool("/sim/freeze/fuel", true); } else if ( arg == "--disable-anti-alias-hud" ) { fgSetBool("/sim/hud/antialiased", false); } else if ( arg == "--enable-anti-alias-hud" ) { @@ -1107,6 +1111,8 @@ fgUsage () cout << "\t\tfull screen voodoo/voodoo-II based cards.)" << endl; cout << "\t--disable-freeze: start out in a running state" << endl; cout << "\t--enable-freeze: start out in a frozen state" << endl; + cout << "\t--disable-fuel-freeze: fuel is consumed normally" << endl; + cout << "\t--enable-fuel-freeze: fuel tanks magically maintain their current contents" << endl; cout << "\t--control=mode: primary control mode " << "(joystick, keyboard, mouse)" << endl; cout << "\t--enable-auto-coordination: enable auto coordination" << endl;