From 271a85b7f106790b8ae8cd8c3930fa60682963d4 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Sat, 25 Jul 2020 16:54:14 +0200 Subject: [PATCH] C++: Fix incorrect variable declaration of VirtualInvokeData struct for 5.3.6-5.4.6 --- Il2CppInspector.Common/Cpp/UnityHeaders/UnityHeaders.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector.Common/Cpp/UnityHeaders/UnityHeaders.cs b/Il2CppInspector.Common/Cpp/UnityHeaders/UnityHeaders.cs index c92cbd6..3ce42f1 100644 --- a/Il2CppInspector.Common/Cpp/UnityHeaders/UnityHeaders.cs +++ b/Il2CppInspector.Common/Cpp/UnityHeaders/UnityHeaders.cs @@ -47,7 +47,7 @@ namespace Il2CppInspector.Cpp.UnityHeaders { Il2CppMethodPointer methodPtr; const MethodInfo* method; -} VirtualInvokeData;"; +};"; } return str; }