From 207cc8e144c4c70482a4414e6a0ae39fd71e46ad Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 19 Dec 2015 06:39:55 +0400 Subject: [PATCH] (ArchiveFormat.IsSaneCount): method made public. --- GameRes/GameRes.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameRes/GameRes.cs b/GameRes/GameRes.cs index 5b6ac206..653cf5a6 100644 --- a/GameRes/GameRes.cs +++ b/GameRes/GameRes.cs @@ -237,7 +237,7 @@ namespace GameRes throw new NotImplementedException ("ArchiveFormat.Create is not implemented"); } - protected static bool IsSaneCount (int count) + public static bool IsSaneCount (int count) { return count > 0 && count < 0x20000; }