From ed258a50671e0c09fe8ce7256034f2a9dc6b0066 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Tue, 15 Dec 2020 16:13:45 +0100 Subject: [PATCH] IL2CPP: Fix regression that broke ReconstructMetadata --- Il2CppInspector.Common/IL2CPP/Il2CppBinary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector.Common/IL2CPP/Il2CppBinary.cs b/Il2CppInspector.Common/IL2CPP/Il2CppBinary.cs index 6626be7..6698f2d 100644 --- a/Il2CppInspector.Common/IL2CPP/Il2CppBinary.cs +++ b/Il2CppInspector.Common/IL2CPP/Il2CppBinary.cs @@ -175,7 +175,7 @@ namespace Il2CppInspector if (!((FindMetadataFromSymbols() ?? FindMetadataFromCode() ?? FindMetadataFromData(metadata)) is (ulong code, ulong meta))) return false; - PrepareMetadata(code, meta); + PrepareMetadata(code, meta, metadata); return true; }