diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-16 20:03:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 20:03:01 +0200 |
commit | 92942fe01bf290d247e1a51562a07fe280448b47 (patch) | |
tree | 0868b1e5d5ae17a77dc18f678eb454b3e8f16c2b /src/common/fs | |
parent | Merge pull request #6462 from Morph1984/proper-flush (diff) | |
parent | common: fs: file: Remove redundant call to WriteStringToFile (diff) | |
download | yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.gz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.bz2 yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.lz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.xz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.zst yuzu-92942fe01bf290d247e1a51562a07fe280448b47.zip |
Diffstat (limited to 'src/common/fs')
-rw-r--r-- | src/common/fs/file.cpp | 4 | ||||
-rw-r--r-- | src/common/fs/file.h | 3 |
2 files changed, 1 insertions, 6 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, size_t AppendStringToFile(const std::filesystem::path& path, FileType type, std::string_view string) { - if (!Exists(path)) { - return WriteStringToFile(path, type, string); - } - if (!IsFile(path)) { return 0; } diff --git a/src/common/fs/file.h b/src/common/fs/file.h index 50e270c5b..0f10b6003 100644 --- a/src/common/fs/file.h +++ b/src/common/fs/file.h @@ -71,7 +71,7 @@ template <typename Path> /** * Writes a string to a file at path and returns the number of characters successfully written. - * If an file already exists at path, its contents will be erased. + * If a file already exists at path, its contents will be erased. * If the filesystem object at path is not a file, this function returns 0. * * @param path Filesystem path @@ -95,7 +95,6 @@ template <typename Path> /** * Appends a string to a file at path and returns the number of characters successfully written. - * If a file does not exist at path, WriteStringToFile is called instead. * If the filesystem object at path is not a file, this function returns 0. * * @param path Filesystem path |