summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/fs/path_util.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp
index defa3e918..ca755b053 100644
--- a/src/common/fs/path_util.cpp
+++ b/src/common/fs/path_util.cpp
@@ -95,6 +95,13 @@ private:
95 95
96 yuzu_path_cache = yuzu_path / CACHE_DIR; 96 yuzu_path_cache = yuzu_path / CACHE_DIR;
97 yuzu_path_config = yuzu_path / CONFIG_DIR; 97 yuzu_path_config = yuzu_path / CONFIG_DIR;
98#elif ANDROID
99 // On Android internal storage is mounted as "/sdcard"
100 if (Exists("/sdcard")) {
101 yuzu_path = "/sdcard/yuzu-emu";
102 yuzu_path_cache = yuzu_path / CACHE_DIR;
103 yuzu_path_config = yuzu_path / CONFIG_DIR;
104 }
98#else 105#else
99 yuzu_path = GetCurrentDir() / PORTABLE_DIR; 106 yuzu_path = GetCurrentDir() / PORTABLE_DIR;
100 107