diff options
author | Oz Linden <oz@lindenlab.com> | 2010-09-15 11:33:59 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-09-15 11:33:59 -0400 |
commit | bf2849ef2346b41ab096c4c7ce44756e3e20cd27 (patch) | |
tree | ead87753b10ec8d48ec2ff13848e3dad74f725b8 /indra/newview/llvoavatar.cpp | |
parent | 53f29252bc055ac884de938814e70b4dba78ba8a (diff) |
[STORM-176] Clean up handling of the maximum length of chat messages
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rw-r--r-- | indra/newview/llvoavatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index cab6fbdc93..46d8f65d23 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -176,7 +176,7 @@ const F32 TIME_BEFORE_MESH_CLEANUP = 5.f; // seconds const S32 AVATAR_RELEASE_THRESHOLD = 10; // number of avatar instances before releasing memory const F32 FOOT_GROUND_COLLISION_TOLERANCE = 0.25f; const F32 AVATAR_LOD_TWEAK_RANGE = 0.7f; -const S32 MAX_BUBBLE_CHAT_LENGTH = 1023; +const S32 MAX_BUBBLE_CHAT_LENGTH = DB_CHAT_MSG_STR_LEN; const S32 MAX_BUBBLE_CHAT_UTTERANCES = 12; const F32 CHAT_FADE_TIME = 8.0; const F32 BUBBLE_CHAT_TIME = CHAT_FADE_TIME * 3.f; |