From 78aea9eb80b301e91da40a71526fc81aa309f023 Mon Sep 17 00:00:00 2001 From: durk Date: Sat, 25 Nov 2006 09:05:03 +0000 Subject: [PATCH] Reorganization of the AI directory tree. Make FlightGear search for airport related AI stuff in data/AI/Airports instead of in data/Airports/AI --- src/Airports/simple.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Airports/simple.cxx b/src/Airports/simple.cxx index 7813d38d2..ed80d43af 100644 --- a/src/Airports/simple.cxx +++ b/src/Airports/simple.cxx @@ -94,12 +94,12 @@ FGAirportDynamics * FGAirport::getDynamics() dynamics = new FGAirportDynamics(_latitude, _longitude, _elevation, _id); SGPath parkpath( globals->get_fg_root() ); - parkpath.append( "/Airports/AI/" ); + parkpath.append( "/AI/Airports/" ); parkpath.append(_id); parkpath.append("parking.xml"); SGPath rwyPrefPath( globals->get_fg_root() ); - rwyPrefPath.append( "/Airports/AI/" ); + rwyPrefPath.append( "AI/Airports/" ); rwyPrefPath.append(_id); rwyPrefPath.append("rwyuse.xml"); -- 2.39.5