mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
(ReadIndex): prioritize PRS images detection.
This commit is contained in:
parent
d7899fa852
commit
10a52b7f5a
@ -112,10 +112,9 @@ namespace GameRes.Formats.Marble
|
||||
{
|
||||
entry = new AutoEntry (name, () => {
|
||||
uint signature = file.View.ReadUInt32 (offset);
|
||||
var res = FormatCatalog.Instance.LookupSignature (signature);
|
||||
if (!res.Any() && 0x4259 == (0xffff & signature))
|
||||
res = FormatCatalog.Instance.ImageFormats.Where (x => x.Tag == "PRS");
|
||||
return res.FirstOrDefault();
|
||||
if (0x4259 == (0xffff & signature))
|
||||
return FormatCatalog.Instance.ImageFormats.FirstOrDefault (x => x.Tag == "PRS");
|
||||
return FormatCatalog.Instance.LookupSignature (signature).FirstOrDefault();
|
||||
});
|
||||
}
|
||||
entry.Offset = offset;
|
||||
|
Loading…
Reference in New Issue
Block a user