diff options
author | volzhs <volzhs@gmail.com> | 2019-03-06 21:20:18 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2019-03-06 21:20:18 +0900 |
commit | 8920bb8c1b6aebb665d376890bd6971f416b8609 (patch) | |
tree | 839bc475bee6c9034770c83196813465dbe54f26 /platform/android/export | |
parent | 2940475c716eab517ca52957acc8714f195d32cb (diff) |
Fix directory check when exporting project
Fix #26702
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index fc26039c28..e489bce3f8 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1499,7 +1499,7 @@ public: } } - if (!FileAccess::exists(p_path.get_base_dir())) { + if (!DirAccess::exists(p_path.get_base_dir())) { return ERR_FILE_BAD_PATH; } |