diff options
author | xcfrg <30675315+xcfrg@users.noreply.github.com> | 2023-09-06 18:53:39 -0400 |
---|---|---|
committer | xcfrg <30675315+xcfrg@users.noreply.github.com> | 2023-09-06 18:53:39 -0400 |
commit | a02d641042d031999f3b4b90a2b5190417e051c5 (patch) | |
tree | d4db0857d6b9e8ff0f80b67beaa7491eb3b71bd2 /src/common/fs | |
parent | c24ed3ecafa97dd41eea8738267d5f8347324e00 (diff) |
add a compile time option to allow disabling portable mode
Diffstat (limited to 'src/common/fs')
-rw-r--r-- | src/common/fs/path_util.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp index d71cfacc6..dce219fcf 100644 --- a/src/common/fs/path_util.cpp +++ b/src/common/fs/path_util.cpp @@ -88,8 +88,9 @@ public: fs::path yuzu_path_config; #ifdef _WIN32 +#ifdef YUZU_ENABLE_PORTABLE yuzu_path = GetExeDirectory() / PORTABLE_DIR; - +#endif if (!IsDir(yuzu_path)) { yuzu_path = GetAppDataRoamingDirectory() / YUZU_DIR; } @@ -101,8 +102,9 @@ public: yuzu_path_cache = yuzu_path / CACHE_DIR; yuzu_path_config = yuzu_path / CONFIG_DIR; #else +#ifdef YUZU_ENABLE_PORTABLE yuzu_path = GetCurrentDir() / PORTABLE_DIR; - +#endif if (Exists(yuzu_path) && IsDir(yuzu_path)) { yuzu_path_cache = yuzu_path / CACHE_DIR; yuzu_path_config = yuzu_path / CONFIG_DIR; |