diff -r 8163c9aaad0c -r 8ad0e23e6d63 hedgewars/uLandPainted.pas --- a/hedgewars/uLandPainted.pas Tue Feb 01 08:15:01 2011 +0100 +++ b/hedgewars/uLandPainted.pas Tue Feb 01 15:30:08 2011 +0100 @@ -149,12 +149,12 @@ begin if (pe^.point.flags and $80 <> 0) then begin - {$IFDEF DEBUGFILE}AddFileLog('[DRAW] Move to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')');{$ENDIF} + AddFileLog('[DRAW] Move to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')'); FillRoundInLand(pe^.point.X, pe^.point.Y, 34, lfBasic) end else begin - {$IFDEF DEBUGFILE}AddFileLog('[DRAW] Line to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')');{$ENDIF} + AddFileLog('[DRAW] Line to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')'); DrawLineOnLand(prevPoint.X, prevPoint.Y, pe^.point.X, pe^.point.Y); end;