diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfasttimerview.cpp | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index b373dd2241..bae3d57300 100644 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -982,8 +982,12 @@ LLSD LLFastTimerView::analyzePerformanceLogDefault(std::istream& is)  			std::string label = iter->first;  			F64 time = iter->second["Time"].asReal(); -			 -			total_time += time; + +			// Skip the total figure +			if(label.compare("Total") != 0) +			{ +				total_time += time; +			}			  			if (time > 0.0)  			{  | 
