mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 02:07:06 -06:00
21.02
This commit is contained in:
@@ -33,7 +33,7 @@ public:
|
||||
{
|
||||
if (numBits < _bitPos)
|
||||
{
|
||||
_curByte |= ((Byte)value << (_bitPos -= numBits));
|
||||
_curByte = (Byte)(_curByte | (value << (_bitPos -= numBits)));
|
||||
return;
|
||||
}
|
||||
numBits -= _bitPos;
|
||||
|
||||
Reference in New Issue
Block a user