summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-18 23:10:35 +0000
committeryexo <yexo@openttd.org>2010-03-18 23:10:35 +0000
commita99a7e7a3784ce6678f8ce2402473133efe511e5 (patch)
tree4442c8e34282b6606c87df7ff67dc544b2407d4e /src/airport.h
parentc4a88ce0225a57243a79e28d133c2ecd884bee68 (diff)
downloadopenttd-a99a7e7a3784ce6678f8ce2402473133efe511e5.tar.xz
(svn r19456) -Codechange; increase the maximum number of airports
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 2ab2e2c5f..d1cddba15 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -37,7 +37,8 @@ enum {
AT_INTERCON = 7,
AT_HELISTATION = 8,
AT_OILRIG = 9,
- NUM_AIRPORTS = 10,
+ NEW_AIRPORT_OFFSET = 10,
+ NUM_AIRPORTS = 128,
AT_DUMMY = 255
};