* fixed WriteDecodedSleb128

git-svn-id: trunk@2413 -
This commit is contained in:
Jonas Maebe 2006-02-03 12:37:50 +00:00
parent 1139570b64
commit 976bb457b4

View File

@ -313,9 +313,9 @@ implementation
if (neg) then
a := a or -(1 shl (size - 7));
if (((a = 0) and
(a and $40 = 0)) or
(b and $40 = 0)) or
((a = -1) and
(a and $40 <> 0))) then
(b and $40 <> 0))) then
more := false
else
b := b or $80;