From 63eb2562b763eb79eb54d7333a8169a520fc3528 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Sun, 2 Feb 2020 06:51:43 +0100 Subject: [PATCH] IL2CPP: Add concrete generic method pointers to function address list --- Il2CppInspector/IL2CPP/Il2CppInspector.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Il2CppInspector/IL2CPP/Il2CppInspector.cs b/Il2CppInspector/IL2CPP/Il2CppInspector.cs index 49d70ab..fd7ff07 100644 --- a/Il2CppInspector/IL2CPP/Il2CppInspector.cs +++ b/Il2CppInspector/IL2CPP/Il2CppInspector.cs @@ -194,6 +194,7 @@ namespace Il2CppInspector Binary.ModuleMethodPointers.SelectMany(module => module.Value).ToList(); sortedFunctionPointers.AddRange(CustomAttributeGenerators); + sortedFunctionPointers.AddRange(GenericMethodPointers.Values); sortedFunctionPointers.Sort(); sortedFunctionPointers = sortedFunctionPointers.Distinct().ToList();