From 09304cab576925d85e0ed2c7205a37aee35079da Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Wed, 9 Jul 2014 18:22:16 +0200 Subject: [PATCH] FPSCounter: Change format string to match value. --- Source/Core/VideoCommon/FPSCounter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/FPSCounter.cpp b/Source/Core/VideoCommon/FPSCounter.cpp index e678abe0b1..10bfebb26f 100644 --- a/Source/Core/VideoCommon/FPSCounter.cpp +++ b/Source/Core/VideoCommon/FPSCounter.cpp @@ -39,7 +39,7 @@ static void LogRenderTimeToFile(u64 val) if (!s_bench_file.is_open()) s_bench_file.open(File::GetUserPath(D_LOGS_IDX) + "render_time.txt"); - s_bench_file << StringFromFormat("%lu\n", val); + s_bench_file << val << std::endl; } int Update()