mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 23:54:02 +08:00
comment on S25Opener.
This commit is contained in:
parent
6ab0378410
commit
6e6cec2cf9
@ -46,7 +46,8 @@ namespace GameRes.Formats.ShiinaRio
|
|||||||
public override string Description { get { return "ShiinaRio image format"; } }
|
public override string Description { get { return "ShiinaRio image format"; } }
|
||||||
public override uint Signature { get { return 0x00353253; } } // 'S25'
|
public override uint Signature { get { return 0x00353253; } } // 'S25'
|
||||||
|
|
||||||
/* FIXME: in current implementation, only the first frame is returned */
|
// in current implementation, only the first frame is returned.
|
||||||
|
// per-frame access is provided by S25Opener class.
|
||||||
|
|
||||||
public override ImageMetaData ReadMetaData (Stream stream)
|
public override ImageMetaData ReadMetaData (Stream stream)
|
||||||
{
|
{
|
||||||
@ -91,7 +92,7 @@ namespace GameRes.Formats.ShiinaRio
|
|||||||
|
|
||||||
internal class Reader : IDisposable
|
internal class Reader : IDisposable
|
||||||
{
|
{
|
||||||
ArcView.Reader m_input;
|
BinaryReader m_input;
|
||||||
int m_width;
|
int m_width;
|
||||||
int m_height;
|
int m_height;
|
||||||
uint m_origin;
|
uint m_origin;
|
||||||
|
Loading…
Reference in New Issue
Block a user