mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(ProxyStream): don't override ReadByte and WriteByte methods.
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user