mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(ArcView.Frame.ReadSByte): additional method.
This commit is contained in:
@@ -371,6 +371,12 @@ namespace GameRes
|
|||||||
return m_view.ReadByte (offset-m_offset);
|
return m_view.ReadByte (offset-m_offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public sbyte ReadSByte (long offset)
|
||||||
|
{
|
||||||
|
Reserve (offset, 1);
|
||||||
|
return m_view.ReadSByte (offset-m_offset);
|
||||||
|
}
|
||||||
|
|
||||||
public ushort ReadUInt16 (long offset)
|
public ushort ReadUInt16 (long offset)
|
||||||
{
|
{
|
||||||
Reserve (offset, 2);
|
Reserve (offset, 2);
|
||||||
|
|||||||
Reference in New Issue
Block a user