summaryrefslogtreecommitdiff
path: root/src/station_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-08-13 06:05:01 +0000
committerrubidium <rubidium@openttd.org>2008-08-13 06:05:01 +0000
commitc816cc37fd01eb9b0842fd22cf5e79473d338c9f (patch)
treedd64aeafae6994a4ed4e2d23a71d62db7de1668f /src/station_type.h
parent688267ad524c955567924294d0e066379994773b (diff)
downloadopenttd-c816cc37fd01eb9b0842fd22cf5e79473d338c9f.tar.xz
(svn r14063) -Codechange: replace some "magic" constants with enumified constants.
Diffstat (limited to 'src/station_type.h')
-rw-r--r--src/station_type.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/station_type.h b/src/station_type.h
index 092f1cf91..85457d544 100644
--- a/src/station_type.h
+++ b/src/station_type.h
@@ -62,4 +62,9 @@ enum CatchmentArea {
MAX_CATCHMENT = 10, ///< Airports have a catchment up to this number.
};
+enum {
+ MAX_LENGTH_STATION_NAME_BYTES = 31, ///< The maximum length of a station name in bytes including '\0'
+ MAX_LENGTH_STATION_NAME_PIXELS = 180, ///< The maximum length of a station name in pixels
+};
+
#endif /* STATION_TYPE_H */