diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-10 02:44:21 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-12 04:50:08 +0200 |
commit | b70a831608caf78831e23575aa2fca19bf0d3491 (patch) | |
tree | 876952a5acc9d1d550feae4f904a919d94563f72 /src/common/file_util.cpp | |
parent | common: Move hex string processing to separate file (diff) | |
download | yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar.gz yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar.bz2 yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar.lz yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar.xz yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.tar.zst yuzu-b70a831608caf78831e23575aa2fca19bf0d3491.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/file_util.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 3ce590062..b30a67ff9 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -750,6 +750,12 @@ std::string GetHactoolConfigurationPath() { #endif } +std::string GetNANDRegistrationDir(bool system) { + if (system) + return GetUserPath(UserPath::NANDDir) + "system/Contents/registered/"; + return GetUserPath(UserPath::NANDDir) + "user/Contents/registered/"; +} + 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()); } |