diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-05-19 13:56:39 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-05-19 13:56:39 -0400 |
commit | d43ac77d1b6d1952fe3369079f6461b124466b38 (patch) | |
tree | 7a17f736bb3216cf6f82b53a8fb1347347cd12f6 /indra/newview/llvoavatarself.cpp | |
parent | 0924e3397cf86a3e7e986da9aeb29e98baace35c (diff) |
AVP-72 FIXED Debug settings for gathering Welcome Island Rez time statistics
Fix for ambiguity around LLSD usage.
Diffstat (limited to 'indra/newview/llvoavatarself.cpp')
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index f329ec83b0..da99b212f0 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -1977,7 +1977,7 @@ void LLVOAvatarSelf::setNewBakedTexture( ETextureIndex te, const LLUUID& uuid ) { LLSD args; args["EXISTENCE"] = llformat("%d",(U32)mDebugExistenceTimer.getElapsedTimeF32()); - args["TIME"] = (U32)mDebugSelfLoadTimer.getElapsedTimeF32(); + args["TIME"] = llformat("%d",(U32)mDebugSelfLoadTimer.getElapsedTimeF32()); LLNotificationsUtil::add("AvatarRezSelfNotification",args); } |