diff options
| author | JosJuice <josjuice@gmail.com> | 2017-12-05 21:23:35 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2017-12-05 21:23:35 +0100 |
| commit | 9d8a82e1d9d945d68b17adab1aff34c96aeda003 (patch) | |
| tree | 9275da06067d45ca835656af3fa4c36b60d6ea45 /Source/Core/VideoCommon/FPSCounter.cpp | |
| parent | 08da19fc87fc69d241a2d61e437ec0704d6e8b87 (diff) | |
Don't use wrong encoding for paths when opening streams on Windows
Diffstat (limited to 'Source/Core/VideoCommon/FPSCounter.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/FPSCounter.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/FPSCounter.cpp b/Source/Core/VideoCommon/FPSCounter.cpp index 86b3ab5c85..24d49548df 100644 --- a/Source/Core/VideoCommon/FPSCounter.cpp +++ b/Source/Core/VideoCommon/FPSCounter.cpp @@ -21,7 +21,10 @@ FPSCounter::FPSCounter() void FPSCounter::LogRenderTimeToFile(u64 val) { if (!m_bench_file.is_open()) - m_bench_file.open(File::GetUserPath(D_LOGS_IDX) + "render_time.txt"); + { + File::OpenFStream(m_bench_file, File::GetUserPath(D_LOGS_IDX) + "render_time.txt", + std::ios_base::out); + } m_bench_file << std::fixed << std::setprecision(8) << (val / 1000.0) << std::endl; } |
