diff options
author | Richard Linden <none@none> | 2013-07-31 14:49:12 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-07-31 14:49:12 -0700 |
commit | e87ba587555d2a70e87dd0b204be2d586920d50f (patch) | |
tree | d81db3af0762fe531cb035e74a5155b1aebfbb97 | |
parent | df5dff372b1c8b182323dcff67c1a2a5dfcddef1 (diff) |
BUILDFIX: bad argument to llformat
-rwxr-xr-x | 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 94be8e2a83..69198ed53d 100755 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -593,7 +593,7 @@ void send_stats() S32 window_height = gViewerWindow->getWindowHeightRaw(); S32 window_size = (window_width * window_height) / 1024; misc["string_1"] = llformat("%d", window_size); - misc["string_2"] = llformat("Texture Time: %.2f, Total Time: %.2f", gTextureTimer.getElapsedTimeF32(), gFrameTimeSeconds); + misc["string_2"] = llformat("Texture Time: %.2f, Total Time: %.2f", gTextureTimer.getElapsedTimeF32(), gFrameTimeSeconds.value()); // misc["int_1"] = LLSD::Integer(gSavedSettings.getU32("RenderQualityPerformance")); // Steve: 1.21 // misc["int_2"] = LLSD::Integer(gFrameStalls); // Steve: 1.21 |