From 90f7c84bba3d1fff6830ee41ddf1d51b17c8b307 Mon Sep 17 00:00:00 2001 From: Ruslan Mustakov Date: Sun, 7 Jan 2018 21:50:41 +0100 Subject: [PATCH] Improve missing iOS loading screen error message --- platform/iphone/export/export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 99d44f3b5e7..e3119814f4d 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -407,7 +407,7 @@ Error EditorExportPlatformIOS::_export_loading_screens(const Refcopy(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; }