* fixed for 64 bit CPUs

This commit is contained in:
florian 2005-04-25 07:50:55 +00:00
parent dde36768ec
commit 18c6645bd8

View File

@ -6,7 +6,15 @@ begin
end;
var
{$ifdef CPU64}
s : double;
{$else}
s : single;
{$endif CPU64}
begin
{$ifdef CPU64}
s := double(f);
{$else CPU64}
s := single(f);
{$endif CPU64}
end.