diff options
author | Palmer Truelson <palmer@lindenlab.com> | 2010-03-17 14:23:40 -0700 |
---|---|---|
committer | Palmer Truelson <palmer@lindenlab.com> | 2010-03-17 14:23:40 -0700 |
commit | fd749ea7d5dac43f6efdb2e7eefe9131cf57ec97 (patch) | |
tree | 0c0956b30e244975f56c3ee27c860f6c1a214785 /indra/newview | |
parent | e898ec97a2e047a99d9474a153bd6ebffe1503fc (diff) |
EXT-6419 Adding comma to viewer stats texture time output
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerstats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index a77aec1be9..41d9f6d067 100644 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -829,7 +829,7 @@ void send_stats() misc["string_1"] = llformat("%d", window_size); if (gDebugTimers.find(0) != gDebugTimers.end() && gFrameTimeSeconds > 0) { - misc["string_2"] = llformat("Texture Time: %.2f Total Time: %.2f", gDebugTimers[0].getElapsedTimeF32(), gFrameTimeSeconds); + misc["string_2"] = llformat("Texture Time: %.2f, Total Time: %.2f", gDebugTimers[0].getElapsedTimeF32(), gFrameTimeSeconds); } // misc["int_1"] = LLSD::Integer(gSavedSettings.getU32("RenderQualityPerformance")); // Steve: 1.21 |