summaryrefslogtreecommitdiffstats
path: root/platform/android/export/export_plugin.cpp
diff options
context:
space:
mode:
authorWilson E. Alvarez <wilson.e.alvarez1@gmail.com>2021-08-29 19:43:47 -0400
committerWilson E. Alvarez <wilson.e.alvarez1@gmail.com>2021-08-29 20:41:29 -0400
commitd11c1afc0497894edd8307434948fc8fb4bb1b11 (patch)
treea11d51740fd1d5daa3962a6907a97d8f521f1f0d /platform/android/export/export_plugin.cpp
parent838a449d6466400fdf5b3a9088b850559cc64c8d (diff)
downloadredot-engine-d11c1afc0497894edd8307434948fc8fb4bb1b11.tar.gz
Rename String::is_rel_path to String::is_relative_path
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r--platform/android/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index bdf12b6c50..5c1c3281a6 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -2609,7 +2609,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
String export_filename = p_path.get_file();
String export_path = p_path.get_base_dir();
- if (export_path.is_rel_path()) {
+ if (export_path.is_relative_path()) {
export_path = OS::get_singleton()->get_resource_dir().plus_file(export_path);
}
export_path = ProjectSettings::get_singleton()->globalize_path(export_path).simplify_path();