fixed maximum chat message length on client-side. #1151

This commit is contained in:
oy 2014-06-22 12:28:31 +02:00
parent 490b8b3381
commit 2448ed14f0

View file

@ -11,7 +11,7 @@ class CLineInput
enum
{
MAX_SIZE=512,
MAX_CHARS=MAX_SIZE/4,
MAX_CHARS=MAX_SIZE/4-1,
};
char m_Str[MAX_SIZE];
int m_Len;