mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 07:34:00 +08:00
(AutoEntry): don't return file type for ambiguously detected files.
This commit is contained in:
parent
e23c5ceafc
commit
65ae716469
@ -61,7 +61,10 @@ namespace GameRes.Formats
|
||||
return new AutoEntry (base_name, () => {
|
||||
uint signature = file.View.ReadUInt32 (offset);
|
||||
if (0 == signature) return null;
|
||||
return FormatCatalog.Instance.LookupSignature (signature).FirstOrDefault();
|
||||
var res = FormatCatalog.Instance.LookupSignature (signature);
|
||||
if (!res.Any() || res.Skip (1).Any()) // Count == 0 || Count > 1
|
||||
return null;
|
||||
return res.First();
|
||||
}) { Offset = offset };
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user