merge 0.9.15 (with a typo fix)
authornemo
Mon, 27 Dec 2010 16:32:15 -0500
changeset 4731 edf7d04d3fa9
parent 4722 038cd49777a7 (current diff)
parent 4728 3d808af10ea0 (diff)
child 4735 08749f5127b9
merge 0.9.15 (with a typo fix)
CMakeLists.txt
hedgewars/uLandPainted.pas
--- a/hedgewars/uLandPainted.pas	Mon Dec 27 19:49:40 2010 +0100
+++ b/hedgewars/uLandPainted.pas	Mon Dec 27 16:32:15 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;