# HG changeset patch # User nemo # Date 1293489274 18000 # Node ID 08749f5127b91bae12bc91fdb4ada3fd6cb43c6c # Parent a23bb7ba11f9f5575c7d1ff0db981ae5e0f93337# Parent edf7d04d3fa97de48feec80bee99cdb3911f9827 0.9.15 merge + typo fix diff -r a23bb7ba11f9 -r 08749f5127b9 CMakeLists.txt diff -r a23bb7ba11f9 -r 08749f5127b9 ChangeLog.txt diff -r a23bb7ba11f9 -r 08749f5127b9 hedgewars/uLandPainted.pas --- a/hedgewars/uLandPainted.pas Mon Dec 27 22:47:18 2010 +0100 +++ b/hedgewars/uLandPainted.pas Mon Dec 27 17:34:34 2010 -0500 @@ -149,12 +149,12 @@ begin if (pe^.point.flags and $80 <> 0) then begin - AddFileLog('[DRAW] Move to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')'); + {$IFDEF DEBUGFILE}AddFileLog('[DRAW] Move to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')');{$ENDIF} FillRoundInLand(pe^.point.X, pe^.point.Y, 34, lfBasic) end else begin - AddFileLog('[DRAW] Line to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')'); + {$IFDEF DEBUGFILE}AddFileLog('[DRAW] Line to: ('+inttostr(pe^.point.X)+','+inttostr(pe^.point.Y)+')');{$ENDIF} DrawLineOnLand(prevPoint.X, prevPoint.Y, pe^.point.X, pe^.point.Y); end;