diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-13 16:55:59 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-16 06:06:02 +0200 |
commit | 74790e4f33b5d287859ae91df984753eaa84aa28 (patch) | |
tree | 5fba453d48a44568c64fe7f5e806ec489da2c952 /src/common/fs/file.cpp | |
parent | fsp_srv: Fix filesystem access logging (diff) | |
download | yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.gz yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.bz2 yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.lz yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.xz yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.zst yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.zip |
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 9f3de1cb0..a12836a0c 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; } |