aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--path_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/path_functions.cpp b/path_functions.cpp
index c415fa09..754ce9e3 100644
--- a/path_functions.cpp
+++ b/path_functions.cpp
@@ -18,7 +18,7 @@ QString AOApplication::get_base_path()
base_path = base_override;
#elif defined(ANDROID)
QString sdcard_storage = getenv("SECONDARY_STORAGE");
- if (dir_exists(sdcard_storage)){
+ if (dir_exists(sdcard_storage + "/AO2/")){
base_path = sdcard_storage + "/AO2/";
}else{
QString external_storage = getenv("EXTERNAL_STORAGE");