1
0
mirror of synced 2025-02-20 20:51:35 +01:00

Another form of 3ds checking for ptcl

This commit is contained in:
KillzXGaming 2019-05-03 21:42:22 -04:00
parent dbf0cf24f6
commit a905fcab5e
2 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -67,9 +67,8 @@ namespace FirstPlugin
reader.ByteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
string Signature = reader.ReadString(4, Encoding.ASCII);
uint Version = reader.ReadUInt32();
Console.WriteLine(Version.ToString("x"));
if (Version == 0x33000000)
byte VersionNum = reader.ReadByte();
if (VersionNum != 0)
Is3DS = true;
reader.Position = 0;