mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
renamed some ImageDecoder properties and classes.
This commit is contained in:
@@ -240,7 +240,7 @@ namespace GameRes.Formats.Cyberworks
|
||||
}
|
||||
}
|
||||
input.Position = 0;
|
||||
return new ImageStreamDecoder (input);
|
||||
return new ImageFormatDecoder (input);
|
||||
}
|
||||
|
||||
uint DecodeDecimal (ArcView file, long offset)
|
||||
@@ -409,7 +409,7 @@ namespace GameRes.Formats.Cyberworks
|
||||
if (id == scheme.Value2)
|
||||
return new AImageReader (input, scheme);
|
||||
input.Position = 0;
|
||||
return new ImageStreamDecoder (input);
|
||||
return new ImageFormatDecoder (input);
|
||||
}
|
||||
|
||||
byte[] ReadToc (string toc_name)
|
||||
|
||||
@@ -52,9 +52,9 @@ namespace GameRes.Formats.Cyberworks
|
||||
AImageScheme m_scheme;
|
||||
ImageData m_image;
|
||||
|
||||
public Stream Input { get { m_input.Position = 0; return m_input.AsStream; } }
|
||||
public ImageMetaData Info { get { return m_info; } }
|
||||
public ImageFormat Format { get { return null; } }
|
||||
public Stream Source { get { m_input.Position = 0; return m_input.AsStream; } }
|
||||
public ImageFormat SourceFormat { get { return null; } }
|
||||
public ImageMetaData Info { get { return m_info; } }
|
||||
|
||||
public ImageData Image
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user