hedgewars/uFloat.pas
changeset 371 731ad6d27bd1
parent 365 a26cec847dd7
child 493 0c0ed17ad675
--- 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