From: mfranz Date: Thu, 11 Oct 2007 16:22:39 +0000 (+0000) Subject: ignore strange 00 entry in apt.dat.gz as committed today; example: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aefae6b55ae67ba8b92a07e9c10bdbe44fc35fa9;p=flightgear.git ignore strange 00 entry in apt.dat.gz as committed today; example: 00 12600 HONOLULU CNTR --- 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 ) {