mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-23 19:34:15 +08:00
(CFP): minor fix.
This commit is contained in:
parent
9ff0da050f
commit
8b1bf35a20
@ -104,12 +104,11 @@ namespace GameRes.Formats.Tail
|
||||
int start_pos = header.ToInt32 (0x10);
|
||||
if (start_pos < 0x36)
|
||||
return null;
|
||||
int extra_length = header.ToInt32 (0x1C);
|
||||
int width = header.ToInt32 (0x14);
|
||||
int height = header.ToInt32 (0x18);
|
||||
var info = new CfpMetaData {
|
||||
Width = header.ToUInt32 (0x14),
|
||||
Height = header.ToUInt32 (0x18),
|
||||
Width = (uint)width,
|
||||
Height = (uint)height,
|
||||
BPP = 32,
|
||||
};
|
||||
info.DataLength = width * height * 4;
|
||||
|
Loading…
x
Reference in New Issue
Block a user