diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-23 19:52:40 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-23 19:52:43 +0200 |
commit | 2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9 (patch) | |
tree | 129596d2ff096166c68af0f39ebf6dda8d7a7ff9 /src/common | |
parent | common/file_util: Remove unnecessary c_str() calls (diff) | |
download | yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.gz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.bz2 yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.lz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.xz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.zst yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/file_util.cpp | 6 | ||||
-rw-r--r-- | src/common/file_util.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index aecb66c32..8a902dd68 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -762,11 +762,11 @@ std::string GetNANDRegistrationDir(bool system) { return GetUserPath(UserPath::NANDDir) + "user/Contents/registered/"; } -std::size_t WriteStringToFile(bool text_file, const std::string& str, const char* filename) { - return FileUtil::IOFile(filename, text_file ? "w" : "wb").WriteBytes(str.data(), str.size()); +std::size_t WriteStringToFile(bool text_file, const std::string& filename, std::string_view str) { + return IOFile(filename, text_file ? "w" : "wb").WriteString(str); } -std::size_t ReadFileToString(bool text_file, const char* filename, std::string& str) { +std::size_t ReadFileToString(bool text_file, const std::string& filename, std::string& str) { IOFile file(filename, text_file ? "r" : "rb"); if (!file.IsOpen()) diff --git a/src/common/file_util.h b/src/common/file_util.h index 88760be2f..c325f5b49 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -146,9 +146,9 @@ const std::string& GetExeDirectory(); std::string AppDataRoamingDirectory(); #endif -std::size_t WriteStringToFile(bool text_file, const std::string& str, const char* filename); +std::size_t WriteStringToFile(bool text_file, const std::string& filename, std::string_view str); -std::size_t ReadFileToString(bool text_file, const char* filename, std::string& str); +std::size_t ReadFileToString(bool text_file, const std::string& filename, std::string& str); /** * Splits the filename into 8.3 format |