parent
47e547fcba
commit
27cf39cdbf
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue