2019.3 support

This commit is contained in:
Perfare
2020-02-28 15:39:11 +08:00
parent d96cc3c762
commit 9d32a9dd6a
5 changed files with 48 additions and 8 deletions

View File

@@ -186,6 +186,11 @@ namespace AssetStudio
{
//var userInformation = reader.ReadStringToNull();
}
if (header.m_Version >= 21)
{
//var unknown = reader.ReadInt32();
}
}
public void SetVersion(string stringVersion)
@@ -307,7 +312,10 @@ namespace AssetStudio
}
reader.Position += stringBufferSize;
}
if (header.m_Version >= 21)
{
reader.Position += 4;
}
string ReadString(BinaryReader stringBufferReader, uint value)
{
var isOffset = (value & 0x80000000) == 0;