Skip to content

Commit d48d4f0

Browse files
author
nitrocaster
committed
Fix CObjectList performance alert.
1 parent 9827707 commit d48d4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrEngine/xr_object_list.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void CObjectList::DumpStatistics(CGameFont &font, PerformanceAlert *alert)
3232
font.OutNext("uClients: %2.2fms, %2.1f%%, crow(%d)/active(%d)/total(%d)", stats.Update.result,
3333
percentage, stats.Crows, stats.Active, stats.Total);
3434
if (alert && stats.Update.result>3.0f)
35-
font.OutNext("UpdateCL > 3ms: %3.1f", stats.Update.result);
35+
alert->Print(font, "UpdateCL > 3ms: %3.1f", stats.Update.result);
3636
}
3737

3838
CObjectList::CObjectList() :

0 commit comments

Comments
 (0)