From 1f1ff7bfe4abbc6008813d0eaf6de0d8743936bd Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Sat, 8 Feb 2020 00:30:15 +0100 Subject: [PATCH] GUI: Clarify auto-detect failure error message --- Il2CppInspector.GUI/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector.GUI/App.xaml.cs b/Il2CppInspector.GUI/App.xaml.cs index 768a577..b5727a1 100644 --- a/Il2CppInspector.GUI/App.xaml.cs +++ b/Il2CppInspector.GUI/App.xaml.cs @@ -61,7 +61,7 @@ namespace Il2CppInspectorGUI catch (NotImplementedException) { } } if (!Il2CppImages.Any()) { - throw new InvalidOperationException("Could not auto-detect any IL2CPP binary images in the file"); + throw new InvalidOperationException("Could not auto-detect any IL2CPP binary images in the file. This may mean the binary file is packed, encrypted or obfuscated, that the file is not an IL2CPP image or that Il2CppInspector was not able to automatically find the required data. Please check the binary file in a disassembler to ensure that it is an unencrypted IL2CPP binary before submitting a bug report!"); } return true; }