Browse Source

Improve missing iOS loading screen error message

Ruslan Mustakov 7 years ago
parent
commit
90f7c84bba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/iphone/export/export.cpp

+ 1 - 1
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;
 		}