(DetBmpFormat): removed 'FD' signature.

This commit is contained in:
morkt 2019-03-30 18:41:27 +04:00
parent f5b10f0cf7
commit 8894767e35

View File

@ -46,7 +46,7 @@ namespace GameRes.Formats.uGOS
public DetBmpFormat () public DetBmpFormat ()
{ {
Extensions = new string[] { "bmp" }; Extensions = new string[] { "bmp" };
Signatures = new uint[] { 0x206546, 0x186546, 0x086546, 0x01186446, 0x186446, 0 }; Signatures = new uint[] { 0x206546, 0x186546, 0x086546, 0 };
} }
public override ImageMetaData ReadMetaData (IBinaryStream stream) public override ImageMetaData ReadMetaData (IBinaryStream stream)
@ -55,7 +55,7 @@ namespace GameRes.Formats.uGOS
if (header[0] != 'F') if (header[0] != 'F')
return null; return null;
var type = header[1] & 0x5F; var type = header[1] & 0x5F;
if (type != 'D' && type != 'E') if (type != 'E')
return null; return null;
int bpp = header[2]; int bpp = header[2];
if (bpp != 8 && bpp != 0x18 && bpp != 0x20) if (bpp != 8 && bpp != 0x18 && bpp != 0x20)