mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
(BitStream.CacheSize): new property.
returns number of bits currently buffered.
This commit is contained in:
parent
7ff67b1922
commit
da7a5f8898
@ -37,7 +37,8 @@ namespace GameRes.Formats
|
||||
protected int m_bits = 0;
|
||||
protected int m_cached_bits = 0;
|
||||
|
||||
public Stream Input { get { return m_input; } }
|
||||
public Stream Input { get { return m_input; } }
|
||||
public int CacheSize { get { return m_cached_bits; } }
|
||||
|
||||
protected BitStream (Stream file, bool leave_open)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user