summaryrefslogtreecommitdiff
path: root/editor/export_template_manager.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-03-06 22:45:07 +0100
committerGitHub <noreply@github.com>2022-03-06 22:45:07 +0100
commit78ad01cae7d68c34cd187b9c3a94583e95ff306f (patch)
treeabeb5ac4f6e06b91bfa85e70b9805e7f01422ece /editor/export_template_manager.cpp
parent47f1c4f900b3f1b367b992b6e2e63e2cc27dc16b (diff)
parent73fdb22668e4c4e7b9b857063195c7b489385985 (diff)
Merge pull request #58839 from KoBeWi/access_creator
Improve some DirAccess usage
Diffstat (limited to 'editor/export_template_manager.cpp')
-rw-r--r--editor/export_template_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp
index 3cad600002..0a8d35aff1 100644
--- a/editor/export_template_manager.cpp
+++ b/editor/export_template_manager.cpp
@@ -645,7 +645,7 @@ Error ExportTemplateManager::install_android_template_from_file(const String &p_
// To support custom Android builds, we install the Java source code and buildsystem
// from android_source.zip to the project's res://android folder.
- DirAccessRef da = DirAccess::open("res://");
+ DirAccessRef da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
ERR_FAIL_COND_V(!da, ERR_CANT_CREATE);
// Make res://android dir (if it does not exist).