diff --git a/Il2CppInspector.Common/FileFormatStreams/ElfReader.cs b/Il2CppInspector.Common/FileFormatStreams/ElfReader.cs index ca56127..9f845a2 100644 --- a/Il2CppInspector.Common/FileFormatStreams/ElfReader.cs +++ b/Il2CppInspector.Common/FileFormatStreams/ElfReader.cs @@ -332,6 +332,9 @@ namespace Il2CppInspector } Console.WriteLine($"Processed {rels.Count} relocations"); + // Build symbol and export tables + processSymbols(); + // Detect and defeat various kinds of XOR encryption StatusUpdate("Detecting encryption"); @@ -445,9 +448,6 @@ namespace Il2CppInspector throw new InvalidOperationException("This IL2CPP binary is packed in a way not currently supported by Il2CppInspector and cannot be loaded."); } - // Build symbol and export tables - processSymbols(); - return true; }