summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FPSCounter.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-07-09 13:56:52 -0400
committerLioncash <mathew1800@gmail.com>2014-07-09 13:56:52 -0400
commit7b95bc78aa2ab306135a3836d7f36e0c8fbe5044 (patch)
tree80dfc7fb4a7e9f9764f7dd0bfadbf3c9acb9f9b8 /Source/Core/VideoCommon/FPSCounter.cpp
parent7b754d6f99e394887869f8b58864a649ea3e9c39 (diff)
parent09304cab576925d85e0ed2c7205a37aee35079da (diff)
Merge pull request #592 from Armada651/pref_log
FPSCounter: Change format string to match value.
Diffstat (limited to 'Source/Core/VideoCommon/FPSCounter.cpp')
-rw-r--r--Source/Core/VideoCommon/FPSCounter.cpp2
1 files changed, 1 insertions, 1 deletions
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()