diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerstats.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewerstats.h b/indra/newview/llviewerstats.h index b5cea9d6a8..694eeaf097 100644 --- a/indra/newview/llviewerstats.h +++ b/indra/newview/llviewerstats.h @@ -235,7 +235,8 @@ public: inline void reset() { - mCount = mSum = mSumOfSquares = 0; + mCount = 0; + mSum = mSumOfSquares = 0.f; mCountOfNextUpdatesToIgnore = 0; } |