mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 05:35:34 +08:00
(ImageDecoder.SourceFormat): allow protected set.
This commit is contained in:
parent
a7d9b9c8dd
commit
e14b7e444c
@ -122,7 +122,7 @@ namespace GameRes
|
||||
protected ImageData m_image;
|
||||
|
||||
public Stream Source { get { m_input.Position = 0; return m_input.AsStream; } }
|
||||
public ImageFormat SourceFormat { get { return null; } }
|
||||
public ImageFormat SourceFormat { get; protected set; }
|
||||
public ImageMetaData Info { get; protected set; }
|
||||
public ImageData Image { get { return m_image ?? (m_image = GetImageData()); } }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user