mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 03:44:13 +08:00
(ArchiveFormat.IsSanecount): increased maximum possible entries count.
This commit is contained in:
parent
51e7b224ec
commit
7b4efc874b
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user