summaryrefslogtreecommitdiffstats
path: root/platform/android/export/export.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2019-04-27 12:22:47 -0300
committerJuan Linietsky <reduzio@gmail.com>2019-04-27 12:23:05 -0300
commitaf9bb0ea15dfd3dfe8950fcfcce364485dadd92a (patch)
tree2005fc12ae91fa16fca6f14276a1c31b08c8786d /platform/android/export/export.cpp
parente5ed112d69fb0a4118b8b40de4d3851cac845445 (diff)
downloadredot-engine-af9bb0ea15dfd3dfe8950fcfcce364485dadd92a.tar.gz
Clean up latency related functions
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r--platform/android/export/export.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp
index f70cee2964..2a3d0843a8 100644
--- a/platform/android/export/export.cpp
+++ b/platform/android/export/export.cpp
@@ -1735,8 +1735,8 @@ public:
new_file += l + "\n";
} else {
String base = l.substr(0, last_tag_pos + last_tag.length());
- if (manifest_sections.has("application_tags")) {
- for (List<String>::Element *E = manifest_sections["application_tags"].front(); E; E = E->next()) {
+ if (manifest_sections.has("application_attribs")) {
+ for (List<String>::Element *E = manifest_sections["application_attribs"].front(); E; E = E->next()) {
String to_add = E->get().strip_edges();
base += " " + to_add + " ";
}