summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-23 21:42:40 +0100
committerGitHub <noreply@github.com>2016-12-23 21:42:40 +0100
commit56e4066f4f51fe944dcbb2f6cbff2cbe823915ed (patch)
tree1eb162e17f3c0126a849ef101cfb2d45594390b9 /src
parentMerge pull request #2364 from mailwl/nwm-services (diff)
parentfile_util: fix missing sysdata path (diff)
downloadyuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar.gz
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar.bz2
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar.lz
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar.xz
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.tar.zst
yuzu-56e4066f4f51fe944dcbb2f6cbff2cbe823915ed.zip
Diffstat (limited to 'src')
-rw-r--r--src/common/file_util.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 5ab938a24..1a1f5d9b5 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -697,9 +697,6 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string& new
paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP;
paths[D_CACHE_IDX] = paths[D_USER_IDX] + CACHE_DIR DIR_SEP;
- paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP;
- paths[D_NAND_IDX] = paths[D_USER_IDX] + NAND_DIR DIR_SEP;
- paths[D_SYSDATA_IDX] = paths[D_USER_IDX] + SYSDATA_DIR DIR_SEP;
#else
if (FileUtil::Exists(ROOT_DIR DIR_SEP USERDATA_DIR)) {
paths[D_USER_IDX] = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP;
@@ -717,6 +714,7 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string& new
#endif
paths[D_SDMC_IDX] = paths[D_USER_IDX] + SDMC_DIR DIR_SEP;
paths[D_NAND_IDX] = paths[D_USER_IDX] + NAND_DIR DIR_SEP;
+ paths[D_SYSDATA_IDX] = paths[D_USER_IDX] + SYSDATA_DIR DIR_SEP;
}
if (!newPath.empty()) {