From d2a5f8c96188143c0c087b748341679d64764446 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Wed, 16 Oct 2019 06:59:17 +0200 Subject: [PATCH] Fix all sub-images besides the first not having version number set --- Il2CppInspector/Il2CppBinary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector/Il2CppBinary.cs b/Il2CppInspector/Il2CppBinary.cs index c6eec66..b95f9b9 100644 --- a/Il2CppInspector/Il2CppBinary.cs +++ b/Il2CppInspector/Il2CppBinary.cs @@ -43,7 +43,7 @@ namespace Il2CppInspector // Check all search locations public bool Initialize(double version, uint imageIndex = 0) { var subImage = Image[imageIndex]; - Image.Stream.Version = version; + subImage.Stream.Version = version; var addrs = subImage.GetFunctionTable(); Console.WriteLine("Function Table:");