From 7b4efc874bf6bd3062c85a589910295cef599f90 Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 10 Jan 2018 17:12:27 +0400 Subject: [PATCH] (ArchiveFormat.IsSanecount): increased maximum possible entries count. --- GameRes/ArchiveFormat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } ///