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; }