diff options
author | James Cook <james@lindenlab.com> | 2010-02-23 16:33:26 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-02-23 16:33:26 -0800 |
commit | 087736c1522f111bc6a4d4937db8541031ef4014 (patch) | |
tree | f90e3bd6f2d9be063ad378e267c311e3f09b4288 | |
parent | 3791745054546dbebb3373371aaf7a0ddad608a3 (diff) |
Decreased delay between name lookup requests
for slightly faster lookup times
-rw-r--r-- | indra/llmessage/llavatarnamecache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llavatarnamecache.cpp b/indra/llmessage/llavatarnamecache.cpp index 37b7a48244..162829da06 100644 --- a/indra/llmessage/llavatarnamecache.cpp +++ b/indra/llmessage/llavatarnamecache.cpp @@ -153,7 +153,7 @@ void LLAvatarNameCache::exportFile(std::ostream& ostr) void LLAvatarNameCache::idle() { - const F32 SECS_BETWEEN_REQUESTS = 0.5f; // JAMESDEBUG set to 0.1? + const F32 SECS_BETWEEN_REQUESTS = 0.2f; // JAMESDEBUG set to 0.1? if (sRequestTimer.checkExpirationAndReset(SECS_BETWEEN_REQUESTS)) { return; |