From 32662a10af702a6f578252e5103cbfbed7baad32 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Sun, 27 Oct 2019 16:21:26 +0100 Subject: [PATCH] Output address of matching function from code heuristics --- Il2CppInspector/Il2CppBinary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector/Il2CppBinary.cs b/Il2CppInspector/Il2CppBinary.cs index 9da370a..3c8474b 100644 --- a/Il2CppInspector/Il2CppBinary.cs +++ b/Il2CppInspector/Il2CppBinary.cs @@ -106,7 +106,7 @@ namespace Il2CppInspector if (loc != 0) { var (code, metadata) = ConsiderCode(subImage, loc); if (code != 0) { - Console.WriteLine("Required structures acquired from code heuristics"); + Console.WriteLine("Required structures acquired from code heuristics. Initialization function: 0x{0:X16}", loc + subImage.GlobalOffset); Configure(subImage, code, metadata); return true; }