From 2d0b310e191088cb45308edc4dbd2c9821f519b5 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Sat, 29 Mar 2014 02:19:14 -0500 Subject: [PATCH] Framerate llinfos spew was clobbering cout decimal precision. --- indra/llcommon/llsys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index c96f2191f..315b42a71 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -1288,7 +1288,7 @@ public: LL_CONT << "slowest framerate for last " << int(prevSize * MEM_INFO_THROTTLE) << " seconds "; } - LL_CONT << std::fixed << std::setprecision(1) << framerate << '\n' + LL_CONT << std::fixed << std::setprecision(1) << framerate << std::setprecision(6) << '\n' << LLMemoryInfo() << LL_ENDL; return false;