* patch from mantis 34851 committed. use size in bits to set result of openbit instead of a fsize*32.

git-svn-id: trunk@41185 -
This commit is contained in:
marco 2019-02-03 14:06:40 +00:00
parent 6ffe906794
commit 91fd2396fc

View File

@ -107,7 +107,7 @@ begin
end;
if FSize < MaxBitRec then
result := FSize * 32; {first bit of next record}
result := FBSize; {first bit of next record}
end;
{ ******************** TBits ***************************** }