Rename deprecated MethodPointers to GlobalMethodPointers

This commit is contained in:
Katy Coe
2019-10-16 17:18:43 +02:00
parent 3345d4566a
commit 38e04b72b7
3 changed files with 9 additions and 6 deletions

View File

@@ -34,10 +34,10 @@ namespace Il2CppInspector
public List<int> FieldOffsets { get; }
public List<Il2CppType> TypeUsages => Binary.Types;
public Dictionary<string, Il2CppCodeGenModule> Modules => Binary.Modules;
public uint[] MethodPointers => Binary.MethodPointers;
public uint[] GlobalMethodPointers => Binary.GlobalMethodPointers; // <=v24.0 only
// TODO: Finish all file access in the constructor and eliminate the need for this
public IFileFormatReader BinaryImage { get; }
public IFileFormatReader BinaryImage => Binary.Image;
public Il2CppInspector(Il2CppBinary binary, Metadata metadata) {
// Store stream representations
@@ -105,6 +105,7 @@ namespace Il2CppInspector
value = Encoding.UTF8.GetString(Metadata.ReadBytes(uiLen));
break;
}
FieldDefaultValue.Add(fdv.fieldIndex, value);
}
@@ -138,6 +139,7 @@ namespace Il2CppInspector
offsets.Add(def.fieldStart + f, Binary.Image.Stream.ReadInt32());
}
}
FieldOffsets = offsets.OrderBy(x => x.Key).Select(x => x.Value).ToList();
}
}