hedgewars/uFloat.pas
changeset 7638 4560cd5b6ad0
parent 7624 03d662ff9c41
child 7657 347e18494fb9
--- a/hedgewars/uFloat.pas	Fri Aug 31 15:28:03 2012 +0200
+++ b/hedgewars/uFloat.pas	Fri Aug 31 11:10:21 2012 -0400
@@ -389,7 +389,7 @@
 
 function isZero(const z: hwFloat): boolean; inline; 
 begin
-isZero := z.Round = 0 and z.Frac = 0;
+isZero := (z.Round = 0) and (z.Frac = 0);
 end;
 {$ENDIF}