diff options
author | Richard Linden <none@none> | 2013-02-07 20:07:31 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2013-02-07 20:07:31 -0800 |
commit | 438cbfe489cc34261ac600bbb22983164e59b1d9 (patch) | |
tree | 0b85ef21d3f04ef43ea1c531a0b2f13e6ede278f /indra/newview | |
parent | b49cdb1c7aee0f02e9f7eedee9295424e4dec213 (diff) |
SH-3275 WIP interesting Update viewer metrics system to be more flexible
fix for timings for recursive fast timers not being correct
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfasttimerview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 7d23687e21..1a1a4a8b44 100644 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -1403,7 +1403,7 @@ void LLFastTimerView::updateTotalTime() break; } - mTotalTimeDisplay = LLUnit<LLUnits::Milliseconds, F64>(llceil(mTotalTimeDisplay.as<LLUnits::Milliseconds, F64>().value() / (20.f)) * 20.f); + mTotalTimeDisplay = LLUnit<LLUnits::Milliseconds, F32>(llceil(mTotalTimeDisplay.as<LLUnits::Milliseconds, F32>().value() / (20.f)) * 20.f); } void LLFastTimerView::drawBars() |