Fix losing top 32 bits of MethodInfo.VirtualAddress

This commit is contained in:
Katy Coe
2019-10-23 14:51:38 +02:00
parent 0441334947
commit 19127a6649

View File

@@ -58,7 +58,7 @@ namespace Il2CppInspector.Reflection
} }
// Remove ARM Thumb marker LSB if necessary // Remove ARM Thumb marker LSB if necessary
VirtualAddress &= 0xfffffffe; VirtualAddress &= 0xffff_ffff_ffff_fffe;
HasBody = true; HasBody = true;
} }