IL2CPP: Fix incorrect resolution of FieldRefs in MetadataUsages

This commit is contained in:
Katy Coe
2020-01-28 00:30:47 +01:00
parent 8a27b45775
commit aafbfc946d
4 changed files with 14 additions and 5 deletions

View File

@@ -439,4 +439,10 @@ namespace Il2CppInspector
public int length;
public int dataIndex;
}
public class Il2CppFieldRef
{
public int typeIndex;
public int fieldIndex; // local offset into type fields
}
}