Browse Source

Merge pull request #22350 from volzhs/ignore-invalid-device

Ignore invalid device for Android
Max Hilbrunner 7 years ago
parent
commit
2613e59f59
1 changed files with 1 additions and 0 deletions
  1. 1 0
      platform/android/export/export.cpp

+ 1 - 0
platform/android/export/export.cpp

@@ -344,6 +344,7 @@ class EditorExportAndroid : public EditorExportPlatform {
 							}
 
 							d.name = vendor + " " + device;
+							if (device == String()) continue;
 						}
 
 						ndevices.push_back(d);