]> git.mxchange.org Git - flightgear.git/commitdiff
ignore strange 00 entry in apt.dat.gz as committed today; example:
authormfranz <mfranz>
Thu, 11 Oct 2007 16:22:39 +0000 (16:22 +0000)
committermfranz <mfranz>
Thu, 11 Oct 2007 16:22:39 +0000 (16:22 +0000)
00 12600 HONOLULU CNTR

src/Airports/apt_loader.cxx

index 43f350d3392319063cca917257136377ea58f536..2f221e9e4927285ef6da74aac4b3e2093a170f7e 100644 (file)
@@ -231,6 +231,8 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
             // windsock entry (ignore)
         } else if ( line_id == 15 ) {
             // custom startup locations (ignore)
+        } else if ( line_id == 0 ) {
+            // ??
         } else if ( line_id >= 50 && line_id <= 56 ) {
             // frequency entries (ignore)
         } else if ( line_id == 99 ) {