From a92b6985258901b0f45a22a9eb6e61b731e638f1 Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 12 Oct 2013 16:34:23 +0000 Subject: (svn r25840) -Codechange: Use NUM_AIRPORTS_PER_GRF instead of NUM_AIRPORTS to properly distinguish limits per NewGRF and limits of the pool. --- src/airport.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/airport.h') 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. }; -- cgit v1.2.3-54-g00ecf