IL2CPP: Write decrypted strings back to metadata

This commit is contained in:
Katy Coe
2020-12-09 22:46:54 +01:00
parent 76ca271966
commit 39f2bca841
3 changed files with 12 additions and 3 deletions

View File

@@ -530,7 +530,7 @@ namespace Il2CppInspector
// Load from a binary stream and metadata stream
// Must be a seekable stream otherwise we catch a System.IO.NotSupportedException
public static List<Il2CppInspector> LoadFromStream(Stream binaryStream, Stream metadataStream, EventHandler<string> statusCallback = null, bool silent = false) {
public static List<Il2CppInspector> LoadFromStream(Stream binaryStream, MemoryStream metadataStream, EventHandler<string> statusCallback = null, bool silent = false) {
// Silent operation if requested
var stdout = Console.Out;