Fix terrasync airport synchronization sequence

Airport A-J were skipped. Thanks to James for spotting this.
Also corrects actual sync order.
This commit is contained in:
ThorstenB
2011-10-29 21:13:12 +02:00
parent 519a843340
commit a4b788980c

View File

@@ -802,10 +802,11 @@ void SGTerraSync::setTileCache(TileCache* tile_cache)
void SGTerraSync::syncAirportsModels()
{
static const char bounds[] = "KZAJ";
for( unsigned i = 0; i < sizeof(bounds)/sizeof(bounds[0])/2; i+= 2 )
static const char* bounds = "MZAJKL"; // airport sync order: K-L, A-J, M-Z
// note "request" method uses LIFO order, i.e. processes most recent request first
for( unsigned i = 0; i < strlen(bounds)/2; i++ )
{
for ( char synced_other = bounds[i]; synced_other <= bounds[i+1]; synced_other++ )
for ( char synced_other = bounds[2*i]; synced_other <= bounds[2*i+1]; synced_other++ )
{
ostringstream dir;
dir << "Airports/" << synced_other;