(ArchiveFormat.IsSanecount): increased maximum possible entries count.

This commit is contained in:
morkt 2018-01-10 17:12:27 +04:00
parent 51e7b224ec
commit 7b4efc874b

View File

@ -127,7 +127,7 @@ namespace GameRes
/// </summary> /// </summary>
public static bool IsSaneCount (int count) public static bool IsSaneCount (int count)
{ {
return count > 0 && count < 0x20000; return count > 0 && count < 0x40000;
} }
/// <summary> /// <summary>