diff options
author | glx <glx@openttd.org> | 2008-02-15 23:57:03 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-15 23:57:03 +0000 |
commit | 3e70ee6ed7ea7bfb7b08ee70206a30651aec956b (patch) | |
tree | 846aa4f1b2b7c56288258e3f5e20efa172fe99a1 /src/station.h | |
parent | a5f99154b755c85dabe8e2a8cc352b7d1a0fbb6c (diff) | |
download | openttd-3e70ee6ed7ea7bfb7b08ee70206a30651aec956b.tar.xz |
(svn r12154) -Codechange: removed a magic number
Diffstat (limited to 'src/station.h')
-rw-r--r-- | src/station.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/station.h b/src/station.h index 0d34a9713..b8557378b 100644 --- a/src/station.h +++ b/src/station.h @@ -239,6 +239,8 @@ enum CatchmentArea { CA_TRAIN = 4, CA_DOCK = 5, + CA_UNMODIFIED = 4, ///< Used when _patches.modified_catchment is false + MAX_CATCHMENT = 10, ///< Airports have a catchment up to this number. }; |