1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix suspicious | and + operators

This commit is contained in:
Rafał Mikrut
2020-02-23 09:28:54 +01:00
parent 63b0d822d1
commit d0621b954b
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++) {