summaryrefslogtreecommitdiff
path: root/src/common/fs/file.cpp
diff options
context:
space:
mode:
authorGravatar Morph2021-06-13 10:55:59 -0400
committerGravatar Morph2021-06-16 00:06:02 -0400
commit74790e4f33b5d287859ae91df984753eaa84aa28 (patch)
tree5fba453d48a44568c64fe7f5e806ec489da2c952 /src/common/fs/file.cpp
parentfsp_srv: Fix filesystem access logging (diff)
downloadyuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.gz
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.tar.xz
yuzu-74790e4f33b5d287859ae91df984753eaa84aa28.zip
common: fs: file: Remove redundant call to WriteStringToFile
The Append open mode will create a new file if said file does not exist at a given path, making this call redundant.
Diffstat (limited to 'src/common/fs/file.cpp')
-rw-r--r--src/common/fs/file.cpp4
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,
183 183
184size_t AppendStringToFile(const std::filesystem::path& path, FileType type, 184size_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 }