diff options
author | Oz Linden <oz@lindenlab.com> | 2015-08-19 13:43:52 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2015-08-19 13:43:52 -0400 |
commit | 6a5844d936c3317626cfcbe9d9cb66086d570fca (patch) | |
tree | 75d92f25dbde711e9040bc8a6bd57fee50ae13da /indra/newview/llviewerwindow.cpp | |
parent | 1f40ba89e63c19a292958f5935596558552d39f6 (diff) |
clarify avatar rez status strings in info display
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rwxr-xr-x | indra/newview/llviewerwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 501ad0ad1b..6d73a75b74 100755 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -680,9 +680,9 @@ public: avatar->calculateUpdateRenderComplexity(); // Make sure the numbers are up-to-date trunc_name = utf8str_truncate(avatar->getFullname(), 16); - addText(xpos, ypos, llformat("%s : rez %d, complexity %d, bytes %d area %.2f", + addText(xpos, ypos, llformat("%s : %s, complexity %d, bytes %d area %.2f", trunc_name.c_str(), - avatar->getRezzedStatus(), + LLVOAvatar::rezStatusToString(avatar->getRezzedStatus()).c_str(), avatar->getVisualComplexity(), avatar->getAttachmentGeometryBytes(), avatar->getAttachmentSurfaceArea())); |