early-access version 1785

This commit is contained in:
pineappleEA
2021-06-13 21:23:07 +02:00
parent 07bb37aaf9
commit 53c119c6c4
17 changed files with 329 additions and 305 deletions

View File

@@ -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;
}