diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 21:26:12 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 21:26:12 -0300 |
commit | 0988970c1fca780f51ba4f2dce6afebdfef7f292 (patch) | |
tree | 60d17bcf2424784f14c8a5f603d828c3053636cb /platform/android | |
parent | 9de33e18f14f78165754e97ed0f7827b2e50d560 (diff) |
Fixed properly not save signals that already exist in their base scenes, closes #5656
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 83f7292716..f4fafc4fab 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1573,7 +1573,7 @@ void EditorExportPlatformAndroid::_device_poll_thread(void *ud) { String dp; Error err = OS::get_singleton()->execute(adb,args,true,NULL,&dp,&ec); - print_line("RV: "+itos(ec)); + Vector<String> props = dp.split("\n"); String vendor; String device; |