Nintenlord.ROMHacking.GBA.GBAROM.CanBeLZ77Decompressed C# (CSharp) Method

CanBeLZ77Decompressed() public method

public CanBeLZ77Decompressed ( int offset, int maxSize, int minSize ) : bool
offset int
maxSize int
minSize int
return bool
        public bool CanBeLZ77Decompressed(int offset, int maxSize, int minSize)
        {
            return LZ77.CanBeUnCompressed(ROMdata, offset, minSize, maxSize);
        }