1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Fixed bitstream4 flush

This commit is contained in:
Martin Tůma 2020-02-08 16:16:24 +01:00
parent fac0bae006
commit e2339c67cd

View File

@ -72,7 +72,8 @@ bool BitStream4::flush()
return false;
_length = 0;
_unused = 32;
_used = 32;
_unused = 0;
return true;
}