DEV-36732

Total time of frame saved

Reviewed by Brad
master
Palmer 2009-08-06 14:29:59 -07:00
parent 47e547fcba
commit 27cf39cdbf
1 changed files with 6 additions and 2 deletions

View File

@ -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)
{