From: mfranz Date: Thu, 4 Oct 2007 17:14:37 +0000 (+0000) Subject: on't hardcode heading-deg to 270 (and pitch-deg to 0.424 ...) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6a8197968a52ff8291ec6ac740c60c3e4aaec26f;p=flightgear.git on't hardcode heading-deg to 270 (and pitch-deg to 0.424 ...) --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 518b1babf..817948d97 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -126,9 +126,9 @@ fgSetDefaults () fgSetDouble("/position/altitude-ft", -9999.0); // Orientation - fgSetDouble("/orientation/heading-deg", 270); + fgSetDouble("/orientation/heading-deg", 9999.0); fgSetDouble("/orientation/roll-deg", 0); - fgSetDouble("/orientation/pitch-deg", 0.424); + fgSetDouble("/orientation/pitch-deg", 0); // Velocities fgSetDouble("/velocities/uBody-fps", 0.0); @@ -145,9 +145,9 @@ fgSetDefaults () fgSetDouble("/sim/presets/latitude-deg", 9999.0); fgSetDouble("/sim/presets/altitude-ft", -9999.0); - fgSetDouble("/sim/presets/heading-deg", 270); - fgSetDouble("/sim/presets/roll-deg", 0); - fgSetDouble("/sim/presets/pitch-deg", 0.424); + fgSetDouble("/sim/presets/heading-deg", 9999.0); + fgSetDouble("/sim/presets/roll-deg", 9999.0); + fgSetDouble("/sim/presets/pitch-deg", 9999.0); fgSetString("/sim/presets/speed-set", "knots"); fgSetDouble("/sim/presets/airspeed-kt", 0.0);