summaryrefslogtreecommitdiffstats
path: root/platform/android/export/export_plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r--platform/android/export/export_plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index 3b1a534daf..30d57cade5 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -2974,11 +2974,11 @@ void EditorExportPlatformAndroid::_remove_copied_libs(String p_gdextension_libs_
String EditorExportPlatformAndroid::join_list(const List<String> &p_parts, const String &p_separator) {
String ret;
- for (int i = 0; i < p_parts.size(); ++i) {
- if (i > 0) {
+ for (List<String>::ConstIterator itr = p_parts.begin(); itr != p_parts.end(); ++itr) {
+ if (itr != p_parts.begin()) {
ret += p_separator;
}
- ret += p_parts[i];
+ ret += *itr;
}
return ret;
}