]> git.mxchange.org Git - flightgear.git/commitdiff
on't hardcode heading-deg to 270 (and pitch-deg to 0.424 ...)
authormfranz <mfranz>
Thu, 4 Oct 2007 17:14:37 +0000 (17:14 +0000)
committermfranz <mfranz>
Thu, 4 Oct 2007 17:14:37 +0000 (17:14 +0000)
src/Main/options.cxx

index 518b1babf265bac95b4b86d6c8b401bacffdcfb7..817948d978dfe47541c0a3276f40fda616a3fc17 100644 (file)
@@ -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);