diff options
author | Richard Linden <none@none> | 2013-08-22 14:21:16 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-22 14:21:16 -0700 |
commit | cf014375b8b408d58bd35deb4e58e4369fb3bf62 (patch) | |
tree | bfb24c15324ea76759b6c5fdab85dbee67be5742 /indra/llui/llstatbar.cpp | |
parent | 37626bb4a29c39b35fe63971928b76d11faafeb3 (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/llstatbar.cpp')
-rwxr-xr-x | indra/llui/llstatbar.cpp | 2 |
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; |