aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/path_functions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/path_functions.cpp b/src/path_functions.cpp
index a8aae2e2..4e031d8f 100644
--- a/src/path_functions.cpp
+++ b/src/path_functions.cpp
@@ -33,12 +33,12 @@ QString AOApplication::get_base_path()
QString base_path = "";
#ifdef ANDROID
QString sdcard_storage = getenv("SECONDARY_STORAGE");
- if (dir_exists(sdcard_storage + "/AO2/")) {
- base_path = sdcard_storage + "/AO2/";
+ if (dir_exists(sdcard_storage + "/base/")) {
+ base_path = sdcard_storage + "/base/";
}
else {
QString external_storage = getenv("EXTERNAL_STORAGE");
- base_path = external_storage + "/AO2/";
+ base_path = external_storage + "/base/";
}
#elif defined(__APPLE__)
base_path = applicationDirPath() + "/../../../base/";