mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-25 12:24:12 +08:00
(ProxyStream): don't override ReadByte and WriteByte methods.
This commit is contained in:
parent
4b5059311c
commit
5bbd10789e
@ -58,11 +58,6 @@ namespace GameRes.Formats
|
|||||||
return m_stream.Read (buffer, offset, count);
|
return m_stream.Read (buffer, offset, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override int ReadByte ()
|
|
||||||
{
|
|
||||||
return m_stream.ReadByte();
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Flush()
|
public override void Flush()
|
||||||
{
|
{
|
||||||
m_stream.Flush();
|
m_stream.Flush();
|
||||||
@ -83,11 +78,6 @@ namespace GameRes.Formats
|
|||||||
m_stream.Write (buffer, offset, count);
|
m_stream.Write (buffer, offset, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void WriteByte (byte value)
|
|
||||||
{
|
|
||||||
m_stream.WriteByte (value);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool _proxy_disposed = false;
|
bool _proxy_disposed = false;
|
||||||
protected override void Dispose (bool disposing)
|
protected override void Dispose (bool disposing)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user