diff options
author | freiro <f73b2894@opayq.com> | 2016-11-26 01:00:52 +0100 |
---|---|---|
committer | freiro <f73b2894@opayq.com> | 2016-11-26 01:00:52 +0100 |
commit | 972b289c787c6f6cc4f097d838b697a767b1642f (patch) | |
tree | 38493b6e62cd1e2ae94276054546303bdfaad69b /src/common | |
parent | Switch to AppData/Roaming (diff) | |
download | yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar.gz yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar.bz2 yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar.lz yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar.xz yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.tar.zst yuzu-972b289c787c6f6cc4f097d838b697a767b1642f.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/file_util.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 6661fe96a..413a8e7e5 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -684,8 +684,7 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string& new #ifdef _WIN32 paths[D_USER_IDX] = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP; if (!FileUtil::IsDirectory(paths[D_USER_IDX])) { - paths[D_USER_IDX] = - AppDataRoamingDirectory() + DIR_SEP EMU_DATA_DIR DIR_SEP USERDATA_DIR DIR_SEP; + paths[D_USER_IDX] = AppDataRoamingDirectory() + DIR_SEP EMU_DATA_DIR DIR_SEP; } paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP; |