summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/airport.h')
-rw-r--r--src/airport.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/airport.h b/src/airport.h
index 7f0cac494..34266e36c 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -37,7 +37,8 @@ enum AirportTypes {
AT_HELISTATION = 8, ///< Heli station airport.
AT_OILRIG = 9, ///< Oilrig airport.
NEW_AIRPORT_OFFSET = 10, ///< Number of the first newgrf airport.
- NUM_AIRPORTS = 128, ///< Maximal number of airports.
+ NUM_AIRPORTS_PER_GRF = 128, ///< Maximal number of airports per NewGRF.
+ NUM_AIRPORTS = 128, ///< Maximal number of airports in total.
AT_INVALID = 254, ///< Invalid airport.
AT_DUMMY = 255, ///< Dummy airport.
};