summaryrefslogtreecommitdiffstats
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-28 17:30:29 +0200
committerLioncash <mathew1800@gmail.com>2014-09-28 17:44:14 +0200
commitca2f0de08abaffea419e674274113b27acdf6ece (patch)
tree30bcdb7a6178ec37b97eac7929b8e92c0e9b0a1b /src/common/file_util.cpp
parentMerge pull request #118 from lioncash/chunk-file (diff)
downloadyuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.gz
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.bz2
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.lz
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.xz
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.tar.zst
yuzu-ca2f0de08abaffea419e674274113b27acdf6ece.zip
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 40cd32d96..9292a1cd6 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -763,12 +763,12 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string &new
// return dir;
//}
-bool WriteStringToFile(bool text_file, const std::string &str, const char *filename)
+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());
}
-bool ReadFileToString(bool text_file, const char *filename, std::string &str)
+size_t ReadFileToString(bool text_file, const char *filename, std::string &str)
{
FileUtil::IOFile file(filename, text_file ? "r" : "rb");
auto const f = file.GetHandle();