diff options
author | Ruslan Mustakov <r.mustakov@gmail.com> | 2018-01-07 21:50:41 +0100 |
---|---|---|
committer | Ruslan Mustakov <r.mustakov@gmail.com> | 2018-01-07 21:50:41 +0100 |
commit | 90f7c84bba3d1fff6830ee41ddf1d51b17c8b307 (patch) | |
tree | 983b344eac8858cba873ea311cba9ec4fd1d0e8e /platform/iphone/export/export.cpp | |
parent | 37ca542d2bfd9aac296e82e30a76117090dea08e (diff) | |
download | redot-engine-90f7c84bba3d1fff6830ee41ddf1d51b17c8b307.tar.gz |
Improve missing iOS loading screen error message
Diffstat (limited to 'platform/iphone/export/export.cpp')
-rw-r--r-- | platform/iphone/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 99d44f3b5e..e3119814f4 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -407,7 +407,7 @@ Error EditorExportPlatformIOS::_export_loading_screens(const Ref<EditorExportPre Error err = da->copy(loading_screen_file, p_dest_dir + info.export_name); if (err) { memdelete(da); - String err_str = String("Failed to export loading screen: ") + loading_screen_file; + String err_str = String("Failed to export loading screen (") + info.preset_key + ") from path: " + loading_screen_file; ERR_PRINT(err_str.utf8().get_data()); return err; } |