Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #592 from Armada651/pref_log
FPSCounter: Change format string to match value.
  • Loading branch information
lioncash committed Jul 9, 2014
2 parents 7b754d6 + 09304ca commit 7b95bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/FPSCounter.cpp
Expand Up @@ -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()
Expand Down

0 comments on commit 7b95bc7

Please sign in to comment.