Recognize v24 metadata from later Unity 2018 versions ("24.1")

This commit is contained in:
Katy Coe
2019-10-20 18:59:59 +02:00
parent 41d6b45f3b
commit 227eb83b63
7 changed files with 44 additions and 32 deletions

View File

@@ -39,7 +39,7 @@ namespace Il2CppInspector.Reflection
if (Definition.methodIndex >= 0) {
// Global method pointer array
if (pkg.Version < 24.1) {
if (pkg.Version <= 24.1) {
VirtualAddress = pkg.GlobalMethodPointers[Definition.methodIndex];
}