(svn r22343) -Change: Remove pixel limiter for query strings.

This commit is contained in:
terkhen
2011-04-17 18:42:17 +00:00
parent e874f0e16e
commit 10caf391a1
30 changed files with 53 additions and 63 deletions

View File

@@ -105,7 +105,6 @@ enum TownFounding {
/** It needs to be 8bits, because we save and load it as such */
typedef SimpleTinyEnumT<TownFounding, byte> TownFoundingByte;
static const uint MAX_LENGTH_TOWN_NAME_CHARS = 32; ///< The maximum length of a town name in characters including '\0'
static const uint MAX_LENGTH_TOWN_NAME_PIXELS = 130; ///< The maximum length of a town name in pixels
static const uint MAX_LENGTH_TOWN_NAME_CHARS = 32; ///< The maximum length of a town name in characters including '\0'
#endif /* TOWN_TYPE_H */