From: curt Date: Thu, 6 Dec 2001 23:28:14 +0000 (+0000) Subject: Fixed a problem with initial view offset (from command line) getting tromped X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=53fdf0c25c1977abe89a7f91f41149400accad98;p=flightgear.git Fixed a problem with initial view offset (from command line) getting tromped on. This is an important feature for multi-display support. --- diff --git a/src/Main/fg_props.cxx b/src/Main/fg_props.cxx index 162f26847..6bcf7f0bd 100644 --- a/src/Main/fg_props.cxx +++ b/src/Main/fg_props.cxx @@ -1093,9 +1093,9 @@ fgInitProps () fgTie("/sim/logging/classes", getLoggingClasses, setLoggingClasses); fgTie("/sim/freeze", getFreeze, setFreeze); fgTie("/sim/aircraft-dir", getAircraftDir, setAircraftDir); - fgTie("/sim/view/offset-deg", getViewOffset, setViewOffset); + fgTie("/sim/view/offset-deg", getViewOffset, setViewOffset, false); fgSetArchivable("/sim/view/offset-deg"); - fgTie("/sim/view/goal-offset-deg", getGoalViewOffset, setGoalViewOffset); + fgTie("/sim/view/goal-offset-deg", getGoalViewOffset, setGoalViewOffset, false); fgSetArchivable("/sim/view/goal-offset-deg"); fgTie("/sim/view/pilot/x-offset-m", getPilotPositionXOffset, setPilotPositionXOffset);