Framerate llinfos spew was clobbering cout decimal precision.

This commit is contained in:
Shyotl
2014-03-29 02:19:14 -05:00
parent dfb465a11b
commit 2d0b310e19

View File

@@ -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;