Reorganization of the AI directory tree. Make FlightGear search for airport
related AI stuff in data/AI/Airports instead of in data/Airports/AI
This commit is contained in:
parent
3bd32f75e4
commit
78aea9eb80
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Reference in a new issue