summaryrefslogtreecommitdiff
path: root/src/waypoint_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
commit97c184f8f8265cf59b24ab3081a032c7162afcb5 (patch)
treedd64aeafae6994a4ed4e2d23a71d62db7de1668f /src/waypoint_type.h
parent08e7da71f520649359bbe40656a7c93e6ac2e1b0 (diff)
downloadopenttd-97c184f8f8265cf59b24ab3081a032c7162afcb5.tar.xz
(svn r14063) -Codechange: replace some "magic" constants with enumified constants.
Diffstat (limited to 'src/waypoint_type.h')
-rw-r--r--src/waypoint_type.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/waypoint_type.h b/src/waypoint_type.h
index c74e8cf92..404ba7c68 100644
--- a/src/waypoint_type.h
+++ b/src/waypoint_type.h
@@ -8,4 +8,9 @@
typedef uint16 WaypointID;
struct Waypoint;
+enum {
+ MAX_LENGTH_WAYPOINT_NAME_BYTES = 31, ///< The maximum length of a waypoint name in bytes including '\0'
+ MAX_LENGTH_WAYPOINT_NAME_PIXELS = 180, ///< The maximum length of a waypoint name in pixels
+};
+
#endif /* WAYPOINT_TYPE_H */