diff options
| author | 2021-06-16 14:03:01 -0400 | |
|---|---|---|
| committer | 2021-06-16 14:03:01 -0400 | |
| commit | 92942fe01bf290d247e1a51562a07fe280448b47 (patch) | |
| tree | 0868b1e5d5ae17a77dc18f678eb454b3e8f16c2b /src/common/fs/file.cpp | |
| parent | Merge pull request #6462 from Morph1984/proper-flush (diff) | |
| parent | common: fs: file: Remove redundant call to WriteStringToFile (diff) | |
| download | yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.gz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.xz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.zip | |
Merge pull request #6460 from Morph1984/fs-access-log-fix
fsp_srv: Fix filesystem access logging
Diffstat (limited to '')
| -rw-r--r-- | src/common/fs/file.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp index c84f31f3e..710e88b39 100644 --- a/src/common/fs/file.cpp +++ b/src/common/fs/file.cpp | |||
| @@ -183,10 +183,6 @@ size_t WriteStringToFile(const std::filesystem::path& path, FileType type, | |||
| 183 | 183 | ||
| 184 | size_t AppendStringToFile(const std::filesystem::path& path, FileType type, | 184 | size_t AppendStringToFile(const std::filesystem::path& path, FileType type, |
| 185 | std::string_view string) { | 185 | std::string_view string) { |
| 186 | if (!Exists(path)) { | ||
| 187 | return WriteStringToFile(path, type, string); | ||
| 188 | } | ||
| 189 | |||
| 190 | if (!IsFile(path)) { | 186 | if (!IsFile(path)) { |
| 191 | return 0; | 187 | return 0; |
| 192 | } | 188 | } |