1
0
Fork 0

on't hardcode heading-deg to 270 (and pitch-deg to 0.424 ...)

This commit is contained in:
mfranz 2007-10-04 17:14:37 +00:00
parent 7c3f46e82f
commit 6a8197968a

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