# HG changeset patch
# User Medo <smaxein@googlemail.com>
# Date 1345290300 -7200
# Node ID 09a44c8fbfbad1d3b83de78a07acffb9c06626a0
# Parent  5f0b1829b16f6813de50f8cd38ed82bc8e65917f
engine: Fixed indentation regression

diff -r 5f0b1829b16f -r 09a44c8fbfba hedgewars/uLand.pas
--- a/hedgewars/uLand.pas	Sat Aug 18 13:40:21 2012 +0200
+++ b/hedgewars/uLand.pas	Sat Aug 18 13:45:00 2012 +0200
@@ -202,9 +202,9 @@
 var pa: TPixAr;
     i: Longword;
     y, x: Longword;
-	fps: TPointArray;
+    fps: TPointArray;
 begin
-	fps:=Template.FillPoints^;
+    fps:=Template.FillPoints^;
     ResizeLand(Template.TemplateWidth, Template.TemplateHeight);
     for y:= 0 to LAND_HEIGHT - 1 do
         for x:= 0 to LAND_WIDTH - 1 do
diff -r 5f0b1829b16f -r 09a44c8fbfba hedgewars/uLandTemplates.pas
--- a/hedgewars/uLandTemplates.pas	Sat Aug 18 13:40:21 2012 +0200
+++ b/hedgewars/uLandTemplates.pas	Sat Aug 18 13:45:00 2012 +0200
@@ -26,7 +26,7 @@
 
 type TRectArray = array[0..64] of TSDL_Rect;
      PRectArray = ^TRectArray;
-	 TPointArray = array[0..64] of TPoint;
+     TPointArray = array[0..64] of TPoint;
      PPointArray = ^TPointArray;
      TEdgeTemplate = record
                      BasePoints: PRectArray;