Skip to content

Commit

Permalink
Fix CObjectList performance alert.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Oct 21, 2015
1 parent 9827707 commit d48d4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/xr_object_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void CObjectList::DumpStatistics(CGameFont &font, PerformanceAlert *alert)
font.OutNext("uClients: %2.2fms, %2.1f%%, crow(%d)/active(%d)/total(%d)", stats.Update.result,
percentage, stats.Crows, stats.Active, stats.Total);
if (alert && stats.Update.result>3.0f)
font.OutNext("UpdateCL > 3ms: %3.1f", stats.Update.result);
alert->Print(font, "UpdateCL > 3ms: %3.1f", stats.Update.result);
}

CObjectList::CObjectList() :
Expand Down

0 comments on commit d48d4f0

Please sign in to comment.