diff options
author | Richard Linden <none@none> | 2013-08-01 08:17:21 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-01 08:17:21 -0700 |
commit | f58eb60b1e0bbdf2148255c61100cbc20d1ba1b0 (patch) | |
tree | 70df47e3863ca1e1c499714e7bb0197e3acf753a /indra/llui | |
parent | e87ba587555d2a70e87dd0b204be2d586920d50f (diff) |
SH-4374 WIP Interesting: Statistics Object cache hit rate is always 100%
Diffstat (limited to 'indra/llui')
-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 1af36c6fdb..ee73cfa40d 100755 --- a/indra/llui/llstatbar.cpp +++ b/indra/llui/llstatbar.cpp @@ -272,7 +272,7 @@ void LLStatBar::draw() mean = frame_recording.getPeriodMean(*mSampleFloatp, num_frames); // always show sample data if we've ever grabbed any samples - show_data = mSampleFloatp->getPrimaryAccumulator()->hasValue(); + show_data = last_frame_recording.hasValue(*mSampleFloatp); } S32 bar_top, bar_left, bar_right, bar_bottom; |