mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
use explicit type declarations instead of LINQ Cast().
This commit is contained in:
@@ -79,7 +79,7 @@ namespace GameRes.Formats.Ail
|
||||
return null;
|
||||
byte[] preview = new byte[16];
|
||||
byte[] sign_buf = new byte[4];
|
||||
foreach (var entry in dir.Cast<PackedEntry>())
|
||||
foreach (PackedEntry entry in dir)
|
||||
{
|
||||
uint extra = 6;
|
||||
if (extra > entry.Size)
|
||||
|
||||
Reference in New Issue
Block a user