diff --git a/GameRes/ArchiveFormat.cs b/GameRes/ArchiveFormat.cs index 70ba2d43..b9e5f4e1 100644 --- a/GameRes/ArchiveFormat.cs +++ b/GameRes/ArchiveFormat.cs @@ -127,7 +127,7 @@ namespace GameRes /// public static bool IsSaneCount (int count) { - return count > 0 && count < 0x20000; + return count > 0 && count < 0x40000; } ///