1
0
mirror of synced 2025-01-19 09:17:30 +01:00

Fix 3ds ptcl byte order

This commit is contained in:
KillzXGaming 2019-08-12 15:41:02 -04:00
parent cb13c0a00a
commit 6d3827cd71

View File

@ -88,7 +88,7 @@ namespace FirstPlugin
}
public void Write(FileWriter writer, PTCL ptcl)
{
writer.ByteOrder = ByteOrder.BigEndian;
writer.ByteOrder = ByteOrder.LittleEndian;
writer.Write(ptcl.data.ToArray());
foreach (TextureInfo tex in ptcl.header3DS.Textures)