From 6a8197968a52ff8291ec6ac740c60c3e4aaec26f Mon Sep 17 00:00:00 2001
From: mfranz <mfranz>
Date: Thu, 4 Oct 2007 17:14:37 +0000
Subject: [PATCH] on't hardcode heading-deg to 270  (and pitch-deg to 0.424
 ...)

---
 src/Main/options.cxx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

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);