diff -r c75410fe3133 -r 731ad6d27bd1 hedgewars/uFloat.pas --- a/hedgewars/uFloat.pas Sat Jan 27 14:06:29 2007 +0000 +++ b/hedgewars/uFloat.pas Sat Jan 27 14:18:33 2007 +0000 @@ -50,7 +50,7 @@ operator > (z1, z2: hwFloat) b : boolean; function cstr(z: hwFloat): string; -function hwRound(t: hwFloat): integer; +function hwRound(t: hwFloat): LongInt; function hwAbs(t: hwFloat): hwFloat; function hwSqr(t: hwFloat): hwFloat; function hwSqrt(t: hwFloat): hwFloat; @@ -231,7 +231,7 @@ if z.isNegative then cstr:= '-' + cstr end; -function hwRound(t: hwFloat): integer; +function hwRound(t: hwFloat): LongInt; begin if t.isNegative then hwRound:= -t.Round else hwRound:= t.Round