diff options
| author | Richard Linden <none@none> | 2013-09-19 15:23:17 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-09-19 15:23:17 -0700 | 
| commit | 6c856aba6bdb0d136133a344e13fe13978e1be01 (patch) | |
| tree | e16148eb959e335b17961321cbd0ef5dda60dd9c | |
| parent | 0d310b44f12db7cb28ebb9f79ad610605115f03a (diff) | |
line endings fix
| -rwxr-xr-x | indra/llui/llstatbar.cpp | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/indra/llui/llstatbar.cpp b/indra/llui/llstatbar.cpp index 9f96dd642d..a6f7dd0ea4 100755 --- a/indra/llui/llstatbar.cpp +++ b/indra/llui/llstatbar.cpp @@ -495,23 +495,23 @@ void LLStatBar::draw()  					switch(mStatType)  					{ -						case STAT_COUNT:
 -							value       = recording.getPerSec(*mStat.countStatp);
 -							num_samples = recording.getSampleCount(*mStat.countStatp);
 -							break;
 -						case STAT_EVENT:
 -							value       = recording.getMean(*mStat.eventStatp);
 -							num_samples = recording.getSampleCount(*mStat.eventStatp);
 -							break;
 -						case STAT_SAMPLE:
 -							value       = recording.getMean(*mStat.sampleStatp);
 -							num_samples = recording.getSampleCount(*mStat.sampleStatp);
 -							break;
 -						case STAT_MEM:
 -							value		= recording.getMean(*mStat.memStatp).value();
 -							num_samples = 1;
 -							break;
 -						default:
 +						case STAT_COUNT: +							value       = recording.getPerSec(*mStat.countStatp); +							num_samples = recording.getSampleCount(*mStat.countStatp); +							break; +						case STAT_EVENT: +							value       = recording.getMean(*mStat.eventStatp); +							num_samples = recording.getSampleCount(*mStat.eventStatp); +							break; +						case STAT_SAMPLE: +							value       = recording.getMean(*mStat.sampleStatp); +							num_samples = recording.getSampleCount(*mStat.sampleStatp); +							break; +						case STAT_MEM: +							value		= recording.getMean(*mStat.memStatp).value(); +							num_samples = 1; +							break; +						default:  							break;  					} | 
