mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-23 19:34:15 +08:00
use FirstOrDefault() in linq query instead of Where().
This commit is contained in:
parent
ba6b8b4f8e
commit
5830c0d8a2
@ -101,18 +101,18 @@ namespace GameRes.Formats.MAI
|
||||
var offset = file.View.ReadUInt32 (index_offset+0x10);
|
||||
var entry = new AutoEntry (Path.Combine (current_folder, name), () => {
|
||||
uint signature = file.View.ReadUInt32 (offset);
|
||||
IEnumerable<IResource> res;
|
||||
if (is_mask_arc)
|
||||
res = FormatCatalog.Instance.ImageFormats.Where (x => x.Tag == "MSK/MAI");
|
||||
return FormatCatalog.Instance.ImageFormats.FirstOrDefault (x => x.Tag == "MSK/MAI");
|
||||
else if (0x4d43 == (signature & 0xffff)) // 'CM'
|
||||
res = FormatCatalog.Instance.ImageFormats.Where (x => x.Tag == "CMP/MAI");
|
||||
return FormatCatalog.Instance.ImageFormats.FirstOrDefault (x => x.Tag == "CMP/MAI");
|
||||
else if (0x4d41 == (signature & 0xffff)) // 'AM'
|
||||
res = FormatCatalog.Instance.ImageFormats.Where (x => x.Tag == "AM/MAI");
|
||||
return FormatCatalog.Instance.ImageFormats.FirstOrDefault (x => x.Tag == "AM/MAI");
|
||||
else if (0x4d42 == (signature & 0xffff)) // 'BM'
|
||||
res = FormatCatalog.Instance.ImageFormats.Where (x => x.Tag == "BMP");
|
||||
return ImageFormat.Bmp;
|
||||
else if (signature != 0)
|
||||
return FormatCatalog.Instance.LookupSignature (signature).FirstOrDefault();
|
||||
else
|
||||
res = FormatCatalog.Instance.LookupSignature (signature);
|
||||
return res.FirstOrDefault();
|
||||
return null;
|
||||
});
|
||||
entry.Offset = offset;
|
||||
entry.Size = file.View.ReadUInt32 (index_offset+0x14);
|
||||
|
Loading…
x
Reference in New Issue
Block a user