From aefae6b55ae67ba8b92a07e9c10bdbe44fc35fa9 Mon Sep 17 00:00:00 2001 From: mfranz Date: Thu, 11 Oct 2007 16:22:39 +0000 Subject: [PATCH] ignore strange 00 entry in apt.dat.gz as committed today; example: 00 12600 HONOLULU CNTR --- src/Airports/apt_loader.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Airports/apt_loader.cxx b/src/Airports/apt_loader.cxx index 43f350d33..2f221e9e4 100644 --- a/src/Airports/apt_loader.cxx +++ b/src/Airports/apt_loader.cxx @@ -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 ) { -- 2.39.5