Merge pull request #592 from Armada651/pref_log

FPSCounter: Change format string to match value.
This commit is contained in:
Lioncash 2014-07-09 13:56:52 -04:00
commit 7b95bc78aa
1 changed files with 1 additions and 1 deletions

View File

@ -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()