(svn r4257) -Codechange: Renamed the airport_map5_tiles_* variables into airport_sections_*
authorcelestar
Mon, 03 Apr 2006 13:02:33 +0000
changeset 3429 12d01022976a
parent 3428 62682d91b4cd
child 3430 b283bb956a36
(svn r4257) -Codechange: Renamed the airport_map5_tiles_* variables into airport_sections_*
station_cmd.c
--- a/station_cmd.c	Mon Apr 03 12:41:31 2006 +0000
+++ b/station_cmd.c	Mon Apr 03 13:02:33 2006 +0000
@@ -1449,14 +1449,14 @@
 
 // FIXME -- need to move to its corresponding Airport variable
 // Country Airfield (small)
-static const byte _airport_map5_tiles_country[] = {
+static const byte _airport_sections_country[] = {
 	54, 53, 52, 65,
 	58, 57, 56, 55,
 	64, 63, 63, 62
 };
 
 // City Airport (large)
-static const byte _airport_map5_tiles_town[] = {
+static const byte _airport_sections_town[] = {
 	31,  9, 33,  9,  9, 32,
 	27, 36, 29, 34,  8, 10,
 	30, 11, 35, 13, 20, 21,
@@ -1466,7 +1466,7 @@
 };
 
 // Metropolitain Airport (large) - 2 runways
-static const byte _airport_map5_tiles_metropolitan[] = {
+static const byte _airport_sections_metropolitan[] = {
 	 31,  9, 33,  9,  9, 32,
 	 27, 36, 29, 34,  8, 10,
 	 30, 11, 35, 13, 20, 21,
@@ -1476,7 +1476,7 @@
 };
 
 // International Airport (large) - 2 runways
-static const byte _airport_map5_tiles_international[] = {
+static const byte _airport_sections_international[] = {
   88, 89, 89, 89, 89, 89,  88,
  	51,  8,  8,  8,  8,  8,  32,
 	30,  8, 11, 27, 11,  8,  10,
@@ -1487,16 +1487,16 @@
 };
 
 // Heliport
-static const byte _airport_map5_tiles_heliport[] = {
+static const byte _airport_sections_heliport[] = {
 	66,
 };
 
 static const byte * const _airport_map5_tiles[] = {
-	_airport_map5_tiles_country,				// Country Airfield (small)
-	_airport_map5_tiles_town,						// City Airport (large)
-	_airport_map5_tiles_heliport,				// Heliport
-	_airport_map5_tiles_metropolitan,   // Metropolitain Airport (large)
-	_airport_map5_tiles_international,	// International Airport (xlarge)
+	_airport_sections_country,				// Country Airfield (small)
+	_airport_sections_town,						// City Airport (large)
+	_airport_sections_heliport,				// Heliport
+	_airport_sections_metropolitan,   // Metropolitain Airport (large)
+	_airport_sections_international,	// International Airport (xlarge)
 };
 
 /** Place an Airport.