|
From: Melchior F. <a86...@un...> - 2001-06-13 17:34:47
|
* Curtis L. Olson -- Wednesday 13 June 2001 16:54:
> Looks like there are a couple squawks down towards the end ...
>
[...]
> Malformed property list for panel.
> Error reading new panel from Aircraft/c172/Panels/c172-panel.xml
The problem is, that c172-panel.xml loads a "navcom-radio.xml",
but there is no such thing. There are just a "navcom1-radio.xml"
and a "navcom2-radio.xml"! A patch like the following fixes that.
(A useful error message would be nice for not available files! :-)
m.
$ diff -u c172-panel.xml.orig c172-panel.xml
--- c172-panel.xml.orig Wed Jun 13 19:10:29 2001
+++ c172-panel.xml Wed Jun 13 19:23:10 2001
@@ -248,13 +248,13 @@
<y>651</y>
</instrument>
- <instrument include="../Instruments/navcom-radio.xml">
+ <instrument include="../Instruments/navcom1-radio.xml">
<name>NavCom 1 Radio</name>
<x>880</x>
<y>607</y>
</instrument>
- <instrument include="../Instruments/navcom-radio.xml">
+ <instrument include="../Instruments/navcom1-radio.xml">
<name>NavCom 2 Radio</name>
<params>
<comm-freq-selected-prop>/radios/comm2/frequencies/selected</comm-freq-selected-prop>
|