diff options
author | prep <prep@lindenlab.com> | 2012-01-19 14:39:06 -0500 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-01-19 14:39:06 -0500 |
commit | dc6b871db8e5e5247d8ef88150efb18186b5e6c8 (patch) | |
tree | 65a14a4731b74a8c22c11142b46ecb1a48a448b5 /indra/llcommon/llqueuedthread.cpp | |
parent | e2ef5a5edce6a01724d91fde5b471b0bae18d045 (diff) | |
parent | 146f0c25504cc16458cb20312eba63b04d26389d (diff) |
merge
Diffstat (limited to 'indra/llcommon/llqueuedthread.cpp')
-rw-r--r-- | indra/llcommon/llqueuedthread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llqueuedthread.cpp b/indra/llcommon/llqueuedthread.cpp index 5dee7a3541..1738c16dea 100644 --- a/indra/llcommon/llqueuedthread.cpp +++ b/indra/llcommon/llqueuedthread.cpp @@ -109,7 +109,7 @@ void LLQueuedThread::shutdown() // MAIN THREAD // virtual -S32 LLQueuedThread::update(U32 max_time_ms) +S32 LLQueuedThread::update(F32 max_time_ms) { if (!mStarted) { @@ -122,7 +122,7 @@ S32 LLQueuedThread::update(U32 max_time_ms) return updateQueue(max_time_ms); } -S32 LLQueuedThread::updateQueue(U32 max_time_ms) +S32 LLQueuedThread::updateQueue(F32 max_time_ms) { F64 max_time = (F64)max_time_ms * .001; LLTimer timer; |