diff options
author | xperia64 <xperiancedapps@gmail.com> | 2021-01-03 20:53:23 +0100 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2021-01-04 04:33:34 +0100 |
commit | fd5776aac21cee4ca8386c81d7d85d0a3c340fe8 (patch) | |
tree | 83564958799140956d357f2184ca92c4d6ad1872 /src | |
parent | Fix the old log file to work with the log parser. (diff) | |
download | yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.gz yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.bz2 yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.lz yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.xz yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.zst yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/logging/backend.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 7c9da6895..bec931ceb 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -146,6 +146,9 @@ void ColorConsoleBackend::Write(const Entry& entry) { } FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { + if (FileUtil::Exists(filename + ".old.txt")) { + FileUtil::Delete(filename + ".old.txt"); + } if (FileUtil::Exists(filename)) { FileUtil::Rename(filename, filename + ".old.txt"); } |