1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Fix suspicious | and + operators

(cherry picked from commit d0621b954b)
This commit is contained in:
Rafał Mikrut
2020-02-23 09:28:54 +01:00
committed by Rémi Verschelde
parent 6e300a0c49
commit d001ca320d
2 changed files with 2 additions and 2 deletions

View File

@@ -337,7 +337,7 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
Vector<String> props = dp.split("\n");
String vendor;
String device;
d.description + "Device ID: " + d.id + "\n";
d.description = "Device ID: " + d.id + "\n";
d.api_level = 0;
for (int j = 0; j < props.size(); j++) {