Skip to content

Commit 690bc7d

Browse files
author
nitrocaster
committed
Tweak particle statistics formatting.
1 parent 90a9f54 commit 690bc7d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/xrEngine/IGame_Persistent.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ void IGame_Persistent::DumpStatistics(CGameFont &font, PerformanceAlert *alert)
259259
{
260260
// XXX: move to particle engine
261261
stats.FrameEnd();
262-
font.OutNext("Particles: starting[%d] active[%d] destroying[%d]", stats.Starting, stats.Active, stats.Destroying);
262+
font.OutNext("Particles:");
263+
font.OutNext("- starting: %u", stats.Starting);
264+
font.OutNext("- active: %u", stats.Active);
265+
font.OutNext("- destroying: %u", stats.Destroying);
263266
stats.FrameStart();
264267
}

0 commit comments

Comments
 (0)