1
0
Fork 0

Fix Nasal failures on clean install.

Previously not all Nasal modules were defined in defaults.xml.  This
meant that the first time FlightGear was run it was possible for
Aircraft Nasal files to reference a module that had not been loaded yet.

This commit simply defines all the Nasal modules ahead of time and loads
them, so all modules are available for Aircraft Nasal files
immediately.
This commit is contained in:
Stuart Buchanan 2019-12-18 19:05:35 +00:00
parent 94c9f3b428
commit 8f464825c7

View file

@ -1349,6 +1349,24 @@ Started September 2000 by David Megginson, david@megginson.com
<performance_monitor>
<enabled type="bool" userarchive="n">false</enabled>
</performance_monitor>
<FailureMgr>
<enabled type="bool" userarchive="n">true</enabled>
</FailureMgr>
<canvas>
<enabled type="bool" userarchive="n">true</enabled>
</canvas>
<console>
<enabled type="bool" userarchive="n">true</enabled>
</console>
<input_helpers>
<enabled type="bool" userarchive="n">true</enabled>
</input_helpers>
<std>
<enabled type="bool" userarchive="n">true</enabled>
</std>
<towing>
<enabled type="bool" userarchive="n">true</enabled>
</towing>
</nasal>
<scenery>
<share-events type="bool" userarchive="y">false</share-events>