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