(svn r21409) -Codechange: limit depot name by amount of characters, not bytes

This commit is contained in:
rubidium
2010-12-05 22:24:04 +00:00
parent 9a18050646
commit 091263317e
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
typedef uint16 DepotID;
struct Depot;
static const uint MAX_LENGTH_DEPOT_NAME_BYTES = 31; ///< The maximum length of a depot name in bytes including '\0'
static const uint MAX_LENGTH_DEPOT_NAME_CHARS = 31; ///< The maximum length of a depot name in characters including '\0'
static const uint MAX_LENGTH_DEPOT_NAME_PIXELS = 180; ///< The maximum length of a depot name in pixels
#endif /* DEPOT_TYPE_H */