Skip to content
Snippets Groups Projects
Commit e87ba587 authored by Richard Linden's avatar Richard Linden
Browse files

BUILDFIX: bad argument to llformat

parent df5dff37
No related branches found
No related tags found
No related merge requests found
...@@ -593,7 +593,7 @@ void send_stats() ...@@ -593,7 +593,7 @@ void send_stats()
S32 window_height = gViewerWindow->getWindowHeightRaw(); S32 window_height = gViewerWindow->getWindowHeightRaw();
S32 window_size = (window_width * window_height) / 1024; S32 window_size = (window_width * window_height) / 1024;
misc["string_1"] = llformat("%d", window_size); 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_1"] = LLSD::Integer(gSavedSettings.getU32("RenderQualityPerformance")); // Steve: 1.21
// misc["int_2"] = LLSD::Integer(gFrameStalls); // Steve: 1.21 // misc["int_2"] = LLSD::Integer(gFrameStalls); // Steve: 1.21
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment