Add support for older PTCL versions
This commit is contained in:
parent
d3bea4cba6
commit
dbf0cf24f6
Binary file not shown.
@ -465,8 +465,15 @@ namespace FirstPlugin
|
|||||||
|
|
||||||
if (header.IsSPBD)
|
if (header.IsSPBD)
|
||||||
{
|
{
|
||||||
uint MipCount = reader.ReadUInt32();
|
uint Alignment = reader.ReadUInt32();
|
||||||
|
uint Pitch = reader.ReadUInt32();
|
||||||
|
WrapMode = reader.ReadByte(); //11 = repeat, 22 = mirror
|
||||||
|
byte unk = reader.ReadByte();
|
||||||
|
byte unk2 = reader.ReadByte();
|
||||||
|
byte unk3 = reader.ReadByte();
|
||||||
|
uint mipCount = reader.ReadUInt32();
|
||||||
CompSel = reader.ReadUInt32();
|
CompSel = reader.ReadUInt32();
|
||||||
|
uint[] MipOffsets = reader.ReadUInt32s(13);
|
||||||
uint enableMipLevel = reader.ReadUInt32();
|
uint enableMipLevel = reader.ReadUInt32();
|
||||||
uint mipBias = reader.ReadUInt32();
|
uint mipBias = reader.ReadUInt32();
|
||||||
uint originalDataFormat = reader.ReadUInt32();
|
uint originalDataFormat = reader.ReadUInt32();
|
||||||
@ -497,6 +504,7 @@ namespace FirstPlugin
|
|||||||
DataPos = reader.ReadUInt32();
|
DataPos = reader.ReadUInt32();
|
||||||
}
|
}
|
||||||
ArrayCount = 1;
|
ArrayCount = 1;
|
||||||
|
Depth = 1;
|
||||||
|
|
||||||
if (Width != 0 && Height != 0 && SurfFormat != 0)
|
if (Width != 0 && Height != 0 && SurfFormat != 0)
|
||||||
{
|
{
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user