(PngFormat.FindChunk): method made static and public.

This commit is contained in:
morkt 2015-06-12 22:49:21 +04:00
parent 1200a610f4
commit 490bf8eaff

View File

@ -178,9 +178,8 @@ namespace GameRes
return meta; return meta;
} }
long FindChunk (Stream stream, string chunk) public static long FindChunk (Stream stream, string chunk)
{ {
char[] find_name = chunk.ToCharArray();
long found_offset = -1; long found_offset = -1;
var file = new ArcView.Reader (stream); var file = new ArcView.Reader (stream);
try try