use explicit type declarations instead of LINQ Cast().

This commit is contained in:
morkt
2016-03-22 06:58:28 +04:00
parent 0a8454d95d
commit 65d04bc1c2
7 changed files with 7 additions and 9 deletions

View File

@@ -179,7 +179,7 @@ namespace GameRes.Formats.Amaterasu
var file_table = new SortedDictionary<uint, PackedEntry>();
if (null != base_archive)
{
foreach (var entry in base_archive.Dir.Cast<AmiEntry>())
foreach (AmiEntry entry in base_archive.Dir)
file_table[entry.Id] = entry;
}
int update_count = UpdateFileTable (file_table, list);