diff options
author | rubidium <rubidium@openttd.org> | 2008-08-12 12:23:05 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-08-12 12:23:05 +0000 |
commit | 72c154fd0fcd0c0c0c1a239b1cefcf0b07d1a9ff (patch) | |
tree | fd02531eb6ab2c4a59498e3f8592ccd17eff3e37 /src/network/core | |
parent | a3910ced70d574d4730268a4df6c5411cad7a04a (diff) | |
download | openttd-72c154fd0fcd0c0c0c1a239b1cefcf0b07d1a9ff.tar.xz |
(svn r14052) -Codechange: make the size of the chat message "box" configurable and increase the default size slightly so it can hold the longest chat messages.
Diffstat (limited to 'src/network/core')
-rw-r--r-- | src/network/core/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/config.h b/src/network/core/config.h index 4911d2a4c..72e4ca78a 100644 --- a/src/network/core/config.h +++ b/src/network/core/config.h @@ -32,7 +32,7 @@ enum { NETWORK_PLAYERS_LENGTH = 200, ///< The maximum length for the list of players that controls a company, in bytes including '\0' NETWORK_CLIENT_NAME_LENGTH = 25, ///< The maximum length of a player, in bytes including '\0' NETWORK_RCONCOMMAND_LENGTH = 500, ///< The maximum length of a rconsole command, in bytes including '\0' - NETWORK_CHAT_LENGTH = 1000, ///< The maximum length of a chat message, in bytes including '\0' + NETWORK_CHAT_LENGTH = 900, ///< The maximum length of a chat message, in bytes including '\0' NETWORK_GRF_NAME_LENGTH = 80, ///< Maximum length of the name of a GRF /** |