* fixed TSingleRec.SetSign on 16 and 8-bit CPUs

git-svn-id: trunk@29120 -
This commit is contained in:
nickysn 2014-11-23 14:14:03 +00:00
parent 5fcb93234b
commit 4fe1ec9c51

View File

@ -2173,7 +2173,7 @@ function TSingleRec.GetSign : Boolean;
procedure TSingleRec.SetSign(s : Boolean);
begin
Data:=(Data and $7fffffff) or (ord(s) shl 31);
Data:=(Data and $7fffffff) or (DWord(ord(s)) shl 31);
end;