summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-08-22 14:21:16 -0700
committerRichard Linden <none@none>2013-08-22 14:21:16 -0700
commitcf014375b8b408d58bd35deb4e58e4369fb3bf62 (patch)
treebfb24c15324ea76759b6c5fdab85dbee67be5742 /indra/llui
parent37626bb4a29c39b35fe63971928b76d11faafeb3 (diff)
SH-4433 FIX: Interesting: Statistics > Ping Sim is always 0 ms
removed bad assert fixed precision issues during int->unsigned int conversions and vice versa
Diffstat (limited to 'indra/llui')
-rwxr-xr-xindra/llui/llstatbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llstatbar.cpp b/indra/llui/llstatbar.cpp
index 8658a2f968..3cd2e53001 100755
--- a/indra/llui/llstatbar.cpp
+++ b/indra/llui/llstatbar.cpp
@@ -401,7 +401,7 @@ void LLStatBar::draw()
{
mLastDisplayValueTimer.reset();
}
- drawLabelAndValue(display_value, unit_label, bar_rect, mDecimalDigits);
+ drawLabelAndValue(display_value, unit_label, bar_rect, decimal_digits);
mLastDisplayValue = display_value;