aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-12-23 22:19:05 +0200
committerwwylele <wwylele@gmail.com>2016-12-23 22:19:14 +0200
commit488b7a4041b639baf01afde770d0456cc84c539c (patch)
treef3b9dba913703aab830b011884f2fcf111409967
parent76890672a0bf38abd0b6fd7d898fbfd4a7ae86d8 (diff)
file_util: fix missing sysdata path
-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 5ab938a24b..1a1f5d9b53 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()) {