mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
(ArcView.Frame.ReadSByte): additional method.
This commit is contained in:
parent
036c19fabe
commit
af0e936cbe
@ -371,6 +371,12 @@ namespace GameRes
|
||||
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)
|
||||
{
|
||||
Reserve (offset, 2);
|
||||
|
Loading…
Reference in New Issue
Block a user