summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-28 17:45:36 -0400
committerLioncash <mathew1800@gmail.com>2019-05-29 07:06:53 -0400
commiteb475025b85686f4793bb83bac377033c17fbd2d (patch)
tree3a5c8e36cab1dae1e4e36ef243d44f540f2c55f1 /Source/Core/Common/FileUtil.cpp
parent992c8bfc4e2394ad5786f5116f5e62ae595b5c44 (diff)
Common/FileUtil: Make WriteStringToFile consistent with ReadFileToString
Makes the parameter ordering consistent and less error-prone.
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 7030c9dc25..826d430b62 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -887,7 +887,7 @@ std::string GetThemeDir(const std::string& theme_name)
return GetSysDirectory() + THEMES_DIR "/" DEFAULT_THEME_DIR "/";
}
-bool WriteStringToFile(const std::string& str, const std::string& filename)
+bool WriteStringToFile(const std::string& filename, const std::string& str)
{
return File::IOFile(filename, "wb").WriteBytes(str.data(), str.size());
}